musica 0.10.1__cp38-cp38-macosx_11_0_arm64.whl → 0.11.1.0__cp38-cp38-macosx_11_0_arm64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of musica might be problematic. Click here for more details.

@@ -0,0 +1,41 @@
1
+ #! /bin/bash
2
+
3
+ set -e
4
+ set -x
5
+
6
+ # Update the mirror list to use vault.centos.org
7
+ sed -i s/mirror.centos.org/vault.centos.org/g /etc/yum.repos.d/*.repo
8
+ sed -i s/^#.*baseurl=http/baseurl=http/g /etc/yum.repos.d/*.repo
9
+ sed -i s/^mirrorlist=http/#mirrorlist=http/g /etc/yum.repos.d/*.repo
10
+
11
+ sed -i 's/mirrorlist/#mirrorlist/g' /etc/yum.repos.d/CentOS-*
12
+ sed -i 's|#baseurl=http://mirror.centos.org|baseurl=http://vault.centos.org|g' /etc/yum.repos.d/CentOS-*
13
+
14
+ yum install -y zip tree
15
+
16
+ # Use CIBW_ARCHS or CIBW_ARCH if set, else fallback to uname -m
17
+ if [ -n "$CIBW_ARCHS" ]; then
18
+ target_arch="$CIBW_ARCHS"
19
+ elif [ -n "$CIBW_ARCH" ]; then
20
+ target_arch="$CIBW_ARCH"
21
+ else
22
+ target_arch="$(uname -m)"
23
+ fi
24
+
25
+ echo "Detected target_arch: $target_arch"
26
+
27
+ if [ "$target_arch" = "x86_64" ]; then
28
+ # Install CUDA 12.2 for x86_64:
29
+ yum-config-manager --add-repo https://developer.download.nvidia.com/compute/cuda/repos/rhel8/x86_64/cuda-rhel8.repo
30
+ # error mirrorlist.centos.org doesn't exists anymore.
31
+ sed -i s/mirror.centos.org/vault.centos.org/g /etc/yum.repos.d/*.repo
32
+ sed -i s/^#.*baseurl=http/baseurl=http/g /etc/yum.repos.d/*.repo
33
+ sed -i s/^mirrorlist=http/#mirrorlist=http/g /etc/yum.repos.d/*.repo
34
+ yum install --setopt=obsoletes=0 -y \
35
+ cuda-nvcc-12-2-12.2.140-1 \
36
+ cuda-cudart-devel-12-2-12.2.140-1 \
37
+ libcurand-devel-12-2-10.3.3.141-1 \
38
+ libcublas-devel-12-2-12.2.5.6-1 \
39
+ libnccl-devel-2.19.3-1+cuda12.2
40
+ ln -s cuda-12.2 /usr/local/cuda
41
+ fi
@@ -0,0 +1,22 @@
1
+ #! /bin/bash
2
+
3
+ set -e
4
+ set -x
5
+
6
+ CUDA_ROOT="C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.8"
7
+ # curl --netrc-optional -L -nv -o cuda.exe https://developer.download.nvidia.com/compute/cuda/12.2.2/local_installers/cuda_12.2.2_537.13_windows.exe
8
+ curl --netrc-optional -L -nv -o cuda.exe https://developer.download.nvidia.com/compute/cuda/12.8.1/local_installers/cuda_12.8.1_572.61_windows.exe
9
+ ./cuda.exe -s nvcc_12.8 cudart_12.8 cublas_dev_12.8 curand_dev_12.8
10
+ rm cuda.exe
11
+
12
+ export CUDA_PATH="/c/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.8"
13
+ export PATH="$CUDA_PATH/bin:$PATH"
14
+
15
+ ls "c/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.8/extras/visual_studio_integration/MSBuildExtensions"
16
+ ls "c/Program Files (x86)/Microsoft Visual Studio/"
17
+
18
+ # choco install cuda
19
+
20
+ ls "$CUDA_PATH"
21
+ ls "$CUDA_PATH/bin"
22
+ which nvcc.exe
@@ -0,0 +1,25 @@
1
+ #!/usr/bin/env bash
2
+ set -e
3
+
4
+ auditwheel repair --exclude libcublas --exclude libcublasLt --exclude libcudart -w "$2" "$1"
5
+
6
+ for whl in "$2"/*.whl; do
7
+ tmpdir=$(mktemp -d)
8
+ unzip -q "$whl" -d "$tmpdir"
9
+ tree "$tmpdir"
10
+ echo "Before patchelf:"
11
+ readelf -d "$tmpdir"/_musica*.so
12
+ patchelf --remove-rpath "$tmpdir"/_musica*.so
13
+ patchelf --set-rpath "\$ORIGIN:\$ORIGIN/../../nvidia/cublas/lib:\$ORIGIN/../../nvidia/cuda_runtime/lib" --force-rpath "$tmpdir"/_musica*.so
14
+ # Remove bundled CUDA libraries
15
+ rm -f "$tmpdir"/musica.libs/libcudart-*.so*
16
+ rm -f "$tmpdir"/musica.libs/libcublas-*.so*
17
+ rm -f "$tmpdir"/musica.libs/libcublasLt-*.so*
18
+ echo "After patchelf:"
19
+ readelf -d "$tmpdir"/_musica*.so
20
+ # Repack the wheel with correct structure
21
+ (cd "$tmpdir" && zip -qr "${whl%.whl}.patched.whl" .)
22
+ rm -rf "$tmpdir"
23
+ # Replace the original wheel with the patched one
24
+ mv "${whl%.whl}.patched.whl" "$whl"
25
+ done
musica/types.py ADDED
@@ -0,0 +1,362 @@
1
+ # Copyright (C) 2023-2025 University Corporation for Atmospheric Research
2
+ # SPDX-License-Identifier: Apache-2.0
3
+ #
4
+ # This file is part of the musica Python package.
5
+ # For more information, see the LICENSE file in the top-level directory of this distribution.
6
+ from typing import Optional, Any, Dict, List, Union, Tuple
7
+ from os import PathLike
8
+ import math
9
+ from _musica._core import (
10
+ _Conditions,
11
+ _SolverType,
12
+ _Solver,
13
+ _State,
14
+ _create_solver,
15
+ _create_solver_from_mechanism,
16
+ _create_state,
17
+ _micm_solve,
18
+ _vector_size,
19
+ _species_ordering,
20
+ _user_defined_rate_parameters_ordering,
21
+ )
22
+ import musica.mechanism_configuration as mc
23
+
24
+ AVOGADRO = 6.02214076e23 # mol^-1
25
+ BOLTZMANN = 1.380649e-23 # J K^-1
26
+ GAS_CONSTANT = AVOGADRO * BOLTZMANN # J K^-1 mol^-1
27
+
28
+ FilePath = Union[str, "PathLike[str]"]
29
+
30
+
31
+ def _get_vector_matrix_indices(row_index: int, column_index: int, vector_size: int) -> Tuple[int, int]:
32
+ """
33
+ Get the row and column indices for a matrix given the row and column indices for a vector.
34
+
35
+ Parameters
36
+ ----------
37
+ row_index : int
38
+ Row index of the vector.
39
+ column_index : int
40
+ Column index of the vector.
41
+ vector_size : int
42
+ Size of the vector.
43
+
44
+ Returns
45
+ -------
46
+ tuple[int, int]
47
+ Index for which state matrix to use and the index in that matrix'x underlying data vector.
48
+ """
49
+ return (row_index // vector_size, column_index * (vector_size - 1) + row_index % vector_size)
50
+
51
+
52
+ class Conditions(_Conditions):
53
+ """
54
+ Conditions class for the MICM solver. If air density is not provided,
55
+ it will be calculated from the Ideal Gas Law using the provided temperature and pressure.
56
+
57
+ Parameters
58
+ ----------
59
+ temperature : float
60
+ Temperature in Kelvin.
61
+ pressure : float
62
+ Pressure in Pascals.
63
+ air_density : float
64
+ Air density in mol m-3
65
+ """
66
+
67
+ def __init__(
68
+ self,
69
+ temperature: Optional[Union[float, int]] = None,
70
+ pressure: Optional[Union[float, int]] = None,
71
+ air_density: Optional[Union[float, int]] = None,
72
+ ):
73
+ super().__init__()
74
+ if temperature is not None:
75
+ self.temperature = temperature
76
+ if pressure is not None:
77
+ self.pressure = pressure
78
+ if air_density is not None:
79
+ self.air_density = air_density
80
+ elif temperature is not None and pressure is not None:
81
+ self.air_density = 1.0 / (GAS_CONSTANT * temperature / pressure)
82
+
83
+
84
+ class SolverType(_SolverType):
85
+ """
86
+ Enum class for the type of solver to use.
87
+ """
88
+
89
+
90
+ class State():
91
+ """
92
+ State class for the MICM solver. It contains the initial conditions and species concentrations.
93
+ """
94
+
95
+ def __init__(self, solver: _Solver, number_of_grid_cells: int, vector_size: int = 0):
96
+ if number_of_grid_cells < 1:
97
+ raise ValueError("number_of_grid_cells must be greater than 0.")
98
+ super().__init__()
99
+ self.__states = [
100
+ _create_state(solver, min(vector_size, number_of_grid_cells - i * vector_size))
101
+ for i in range(math.ceil(number_of_grid_cells / vector_size))
102
+ ] if vector_size > 0 else [_create_state(solver, number_of_grid_cells)]
103
+ self.__species_ordering = _species_ordering(self.__states[0])
104
+ self.__user_defined_rate_parameters_ordering = _user_defined_rate_parameters_ordering(self.__states[0])
105
+ self.__number_of_grid_cells = number_of_grid_cells
106
+ self.__vector_size = vector_size
107
+
108
+ def get_internal_states(self) -> List[_State]:
109
+ """
110
+ Get the internal states of the MICM solver.
111
+
112
+ Returns
113
+ -------
114
+ List[_State]
115
+ List of internal states.
116
+ """
117
+ return self.__states
118
+
119
+ def set_concentrations(self, concentrations: Dict[str, Union[Union[float, int], List[Union[float, int]]]]):
120
+ """
121
+ Set the concentrations of the species in the state. Any species not in the
122
+ dictionary will be set to zero. The concentrations can be a single value when solving
123
+ for a single grid cell, or a list of values when solving for multiple grid cells.
124
+
125
+ Parameters
126
+ ----------
127
+ concentrations : Dict[str, Union[Union[float, int], List[Union[float, int]]]]
128
+ Dictionary of species names and their concentrations.
129
+ """
130
+ for name, value in concentrations.items():
131
+ if name not in self.__species_ordering:
132
+ raise ValueError(f"Species {name} not found in the mechanism.")
133
+ i_species = self.__species_ordering[name]
134
+ if isinstance(value, float) or isinstance(value, int):
135
+ value = [value]
136
+ if len(value) != self.__number_of_grid_cells:
137
+ raise ValueError(f"Concentration list for {name} must have length {self.__number_of_grid_cells}.")
138
+ # Counter 'k' is used to map grid cell indices across multiple state segments.
139
+ k = 0
140
+ for state in self.__states:
141
+ cell_stride, species_stride = state.concentration_strides()
142
+ for i_cell in range(state.number_of_grid_cells()):
143
+ state.concentrations[i_species * species_stride + i_cell * cell_stride] = value[k]
144
+ k += 1
145
+
146
+ def set_user_defined_rate_parameters(
147
+ self, user_defined_rate_parameters: Dict[str, Union[Union[float, int], List[Union[float, int]]]]):
148
+ """
149
+ Set the user-defined rate parameters in the state. Any parameter not in the
150
+ dictionary will be set to zero. The parameters can be a single value when solving
151
+ for a single grid cell, or a list of values when solving for multiple grid cells.
152
+
153
+ Parameters
154
+ ----------
155
+ user_defined_rate_parameters : Dict[str, Union[Union[float, int], List[Union[float, int]]]]
156
+ Dictionary of user-defined rate parameter names and their values.
157
+ """
158
+ for name, value in user_defined_rate_parameters.items():
159
+ if name not in self.__user_defined_rate_parameters_ordering:
160
+ raise ValueError(f"User-defined rate parameter {name} not found in the mechanism.")
161
+ i_param = self.__user_defined_rate_parameters_ordering[name]
162
+ if isinstance(value, float) or isinstance(value, int):
163
+ value = [value]
164
+ if len(value) != self.__number_of_grid_cells:
165
+ raise ValueError(
166
+ f"User-defined rate parameter list for {name} must have length {self.__number_of_grid_cells}.")
167
+ # Initialize `k` to index the grid cells when assigning user-defined rate parameters.
168
+ k = 0
169
+ for state in self.__states:
170
+ cell_stride, param_stride = state.user_defined_rate_parameter_strides()
171
+ for i_cell in range(state.number_of_grid_cells()):
172
+ state.user_defined_rate_parameters[i_param * param_stride + i_cell * cell_stride] = value[k]
173
+ k += 1
174
+
175
+ def set_conditions(self,
176
+ temperatures: Union[Union[float, int], List[Union[float, int]]],
177
+ pressures: Union[Union[float, int], List[Union[float, int]]],
178
+ air_densities: Optional[Union[Union[float, int], List[Union[float, int]]]] = None):
179
+ """
180
+ Set the conditions for the state. The individual conditions can be a single value
181
+ when solving for a single grid cell, or a list of values when solving for multiple grid cells.
182
+ If air density is not provided, it will be calculated from the Ideal Gas Law using the provided
183
+ temperature and pressure.
184
+
185
+ Parameters
186
+ ----------
187
+ temperatures : Union[float, List[float]]
188
+ Temperature in Kelvin.
189
+ pressures : Union[float, List[float]]
190
+ Pressure in Pascals.
191
+ air_densities : Optional[Union[float, List[float]]]
192
+ Air density in mol m-3. If not provided, it will be calculated from the Ideal Gas Law.
193
+ """
194
+ if isinstance(temperatures, float) or isinstance(temperatures, int):
195
+ if self.__number_of_grid_cells > 1:
196
+ raise ValueError(f"temperatures must be a list of length {self.__number_of_grid_cells}.")
197
+ temperatures = [temperatures]
198
+ if isinstance(pressures, float) or isinstance(pressures, int):
199
+ if self.__number_of_grid_cells > 1:
200
+ raise ValueError(f"pressures must be a list of length {self.__number_of_grid_cells}.")
201
+ pressures = [pressures]
202
+ if air_densities is not None and (isinstance(air_densities, float) or isinstance(air_densities, int)):
203
+ if self.__number_of_grid_cells > 1:
204
+ raise ValueError(f"air_densities must be a list of length {self.__number_of_grid_cells}.")
205
+ air_densities = [air_densities]
206
+ if len(temperatures) != self.__number_of_grid_cells:
207
+ raise ValueError(f"temperatures must be a list of length {self.__number_of_grid_cells}.")
208
+ if len(pressures) != self.__number_of_grid_cells:
209
+ raise ValueError(f"pressures must be a list of length {self.__number_of_grid_cells}.")
210
+ if air_densities is not None and len(air_densities) != self.__number_of_grid_cells:
211
+ raise ValueError(f"air_densities must be a list of length {self.__number_of_grid_cells}.")
212
+ k = 0
213
+ for state in self.__states:
214
+ for condition in state.conditions:
215
+ condition.temperature = temperatures[k]
216
+ condition.pressure = pressures[k]
217
+ condition.air_density = air_densities[k] if air_densities is not None else pressures[k] / (
218
+ GAS_CONSTANT * temperatures[k])
219
+ k += 1
220
+
221
+ def get_concentrations(self) -> Dict[str, List[float]]:
222
+ """
223
+ Get the concentrations of the species in the state.
224
+
225
+ Returns
226
+ -------
227
+ Dict[str, List[float]]
228
+ Dictionary of species names and their concentrations.
229
+ """
230
+ concentrations = {}
231
+ for species, i_species in self.__species_ordering.items():
232
+ concentrations[species] = []
233
+ for state in self.__states:
234
+ cell_stride, species_stride = state.concentration_strides()
235
+ for i_cell in range(state.number_of_grid_cells()):
236
+ concentrations[species].append(
237
+ state.concentrations[i_species * species_stride + i_cell * cell_stride])
238
+ return concentrations
239
+
240
+ def get_user_defined_rate_parameters(self) -> Dict[str, List[float]]:
241
+ """
242
+ Get the user-defined rate parameters in the state.
243
+
244
+ Returns
245
+ -------
246
+ Dict[str, List[float]]
247
+ Dictionary of user-defined rate parameter names and their values.
248
+ """
249
+ user_defined_rate_parameters = {}
250
+ for param, i_param in self.__user_defined_rate_parameters_ordering.items():
251
+ user_defined_rate_parameters[param] = []
252
+ for state in self.__states:
253
+ cell_stride, param_stride = state.user_defined_rate_parameter_strides()
254
+ for i_cell in range(state.number_of_grid_cells()):
255
+ user_defined_rate_parameters[param].append(
256
+ state.user_defined_rate_parameters[i_param * param_stride + i_cell * cell_stride])
257
+ return user_defined_rate_parameters
258
+
259
+ def get_conditions(self) -> Dict[str, List[float]]:
260
+ """
261
+ Get the conditions for the state.
262
+
263
+ Returns
264
+ -------
265
+ Dict[str, List[float]]
266
+ Dictionary of conditions names and their values.
267
+ """
268
+ conditions = {}
269
+ conditions["temperature"] = []
270
+ conditions["pressure"] = []
271
+ conditions["air_density"] = []
272
+ for state in self.__states:
273
+ for i_cell in range(state.number_of_grid_cells()):
274
+ conditions["temperature"].append(state.conditions[i_cell].temperature)
275
+ conditions["pressure"].append(state.conditions[i_cell].pressure)
276
+ conditions["air_density"].append(state.conditions[i_cell].air_density)
277
+ return conditions
278
+
279
+
280
+ class MICM():
281
+ """
282
+ The MICM class is a wrapper around the C++ MICM solver. It provides methods to create a solver,
283
+ create a state, and solve the system of equations.
284
+
285
+ Parameters
286
+ ----------
287
+ config_path : FilePath
288
+ Path to the configuration file.
289
+ mechanism : mechanism_configuration.Mechanism
290
+ Mechanism object which specifies the chemical mechanism to use.
291
+ solver_type : SolverType
292
+ Type of solver to use.
293
+ number_of_grid_cells : int
294
+ Number of grid cells to use. The default is 1.
295
+ """
296
+
297
+ def __init__(
298
+ self,
299
+ config_path: FilePath = None,
300
+ mechanism: mc.Mechanism = None,
301
+ solver_type: _SolverType = None,
302
+ ):
303
+ self.__solver_type = solver_type
304
+ self.__vector_size = _vector_size(solver_type)
305
+ if config_path is None and mechanism is None:
306
+ raise ValueError("Either config_path or mechanism must be provided.")
307
+ if config_path is not None and mechanism is not None:
308
+ raise ValueError("Only one of config_path or mechanism must be provided.")
309
+ if config_path is not None:
310
+ self.__solver = _create_solver(config_path, solver_type)
311
+ elif mechanism is not None:
312
+ self.__solver = _create_solver_from_mechanism(mechanism, solver_type)
313
+
314
+ def solver_type(self) -> SolverType:
315
+ """
316
+ Get the type of solver used.
317
+
318
+ Returns
319
+ -------
320
+ SolverType
321
+ The type of solver used.
322
+ """
323
+ return self.__solver_type
324
+
325
+ def create_state(self, number_of_grid_cells: int = 1) -> State:
326
+ """
327
+ Create a new state object.
328
+
329
+ Returns
330
+ -------
331
+ State
332
+ A new state object.
333
+ """
334
+ return State(self.__solver, number_of_grid_cells, self.__vector_size)
335
+
336
+ def solve(
337
+ self,
338
+ state: State,
339
+ time_step: float,
340
+ ):
341
+ """
342
+ Solve the system of equations for the given state and time step.
343
+
344
+ Parameters
345
+ ----------
346
+ state : State
347
+ State object containing the initial conditions.
348
+ time_step : float
349
+ Time step in seconds.
350
+
351
+ Returns
352
+ -------
353
+ State
354
+ Updated state object after solving the system of equations.
355
+ """
356
+ if not isinstance(state, State):
357
+ raise TypeError("state must be an instance of State.")
358
+ if not isinstance(time_step, (int, float)):
359
+ raise TypeError("time_step must be an int or float.")
360
+ states = state.get_internal_states()
361
+ for _, _state in enumerate(states):
362
+ _micm_solve(self.__solver, _state, time_step)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: musica
3
- Version: 0.10.1
3
+ Version: 0.11.1.0
4
4
  Summary: MUSICA is a Python library for performing computational simulations in atmospheric chemistry.
5
5
  Author-Email: Matthew Dawsom <mattdawson@ucar.edu>, Jiwon Gim <jiwongim@ucar.edu>, David Fillmore <fillmore@ucar.edu>, Kyle Shores <kshores@ucar.edu>, Montek Thind <mthind@ucar.edu>
6
6
  Maintainer-Email: ACOM MUSICA Developers <musica-support@ucar.edu>
@@ -209,6 +209,10 @@ License: Apache License
209
209
  Project-URL: homepage, https://wiki.ucar.edu/display/MUSICA/MUSICA+Home
210
210
  Provides-Extra: test
211
211
  Requires-Dist: numpy; extra == "test"
212
+ Requires-Dist: pytest; extra == "test"
213
+ Provides-Extra: gpu
214
+ Requires-Dist: nvidia-cublas-cu12; extra == "gpu"
215
+ Requires-Dist: nvidia-cuda-runtime-cu12; extra == "gpu"
212
216
  Description-Content-Type: text/markdown
213
217
 
214
218
  # MUSICA
@@ -222,6 +226,7 @@ Description-Content-Type: text/markdown
222
226
  [![DOI](https://zenodo.org/badge/550370528.svg)](https://zenodo.org/doi/10.5281/zenodo.7458559)
223
227
  [![PyPI version](https://badge.fury.io/py/musica.svg)](https://pypi.org/p/musica)
224
228
  [![FAIR checklist badge](https://fairsoftwarechecklist.net/badge.svg)](https://fairsoftwarechecklist.net/v0.2?f=31&a=32113&i=22322&r=123)
229
+ [![codecov](https://codecov.io/gh/NCAR/musica/branch/main/graph/badge.svg)](https://codecov.io/gh/NCAR/musica)
225
230
 
226
231
  Multi-Scale Infrastructure for Chemistry and Aerosols
227
232
 
@@ -274,6 +279,22 @@ Specifying a specific version of `tuv-x` by has, but using the official reposito
274
279
  -DTUVX_GIT_TAG=a6b2c4d8745
275
280
 
276
281
 
282
+ ### Python build
283
+ Musica has python bindings. If you want to install the python package, you may `pip install musica`.
284
+
285
+ To build the package locally,
286
+
287
+ ```
288
+ pip install -e .
289
+ ```
290
+
291
+ If you have an NVIDIA GPU and cuda installed, you can enable a build of musica with GPU support by setting the environment
292
+ variable `BUILD_GPU`.
293
+
294
+ ```
295
+ BUILD_GPU=1 pip install -e .
296
+ ```
297
+
277
298
  ## Citing MUSICA
278
299
 
279
300
  MUSICA can be cited in at least two ways. The first is to cite [the paper](https://doi.org/10.1175/BAMS-D-19-0331.1) that defines the vision
@@ -0,0 +1,30 @@
1
+ _musica.cpython-38-darwin.so,sha256=eGG4qDwVwcI1fMrAvvhxANXOL0ocXNobl7ZyuBsAB6o,1693200
2
+ musica-0.11.1.0.dist-info/RECORD,,
3
+ musica-0.11.1.0.dist-info/WHEEL,sha256=lkMk8TmLjB7Q3RmWWjXHvovliuXltvdURemb10hs9ig,112
4
+ musica-0.11.1.0.dist-info/METADATA,sha256=TBJI5PEajWEcPSut2_1k4J6NL2tA9EH-iPLwgCRecHo,20814
5
+ musica-0.11.1.0.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
6
+ lib/libyaml-cpp.a,sha256=92HOQacR9IxfClvaT0_ohp86czur70fKtMTJqUfpKhA,795856
7
+ lib/libmusica.a,sha256=qB7XASy-w1m3aCssUQJUCvFKglS1Lv_guXTT1WO3Xc8,1355336
8
+ musica/CMakeLists.txt,sha256=FJkD0MaB1qUNDpyCsjELAW4wpuSslfzyo-YCJwLkIp4,1128
9
+ musica/mechanism_configuration.py,sha256=pma248L_jjQecsxL9zIn-S4KxXNlSL1NL4LB4fN5jV0,58011
10
+ musica/binding.cpp,sha256=zDD_TQ7icS_lNG7iUAp23VG7_odbptGJbtRdYjalsdc,656
11
+ musica/_version.py,sha256=suv06oJaea_7HQaaHK99o4t0k3p-d4OKHaDzvMpoHOU,21
12
+ musica/__init__.py,sha256=CW7SVuK4kO8bYg8wB56YGun-NBRmBqWQO379qP21Yvo,82
13
+ musica/types.py,sha256=WQYTDT3aZQVvCyXmaEGuBYqtdx3IZk1Ao5bcmPUGzXM,14895
14
+ musica/mechanism_configuration.cpp,sha256=E7GGeftgQGL303nsk2C7pwYpPiMAQcuxdbadohHb1QM,27100
15
+ musica/musica.cpp,sha256=BBRtL9_Q62ia_vhmpTqpnHHGimPBpCR5YVth8x0i0h4,8399
16
+ musica/tools/prepare_build_environment_windows.sh,sha256=zMY_RIerqfMC1VlfpZ2KjjDWfBUOvvx8oRNk_jJhmII,826
17
+ musica/tools/prepare_build_environment_linux.sh,sha256=9rkT0bTVmu9QQqhS6eGRX1HXMQZLfkUGakkC3i5VKec,1466
18
+ musica/tools/repair_wheel_gpu.sh,sha256=PHWls1cS9QOElQDIgSMOh7TkHB8UNylZbls9zSjSus0,917
19
+ musica/test/test_parser.py,sha256=VhOPNrcDnFGgk2v_iMoLNq5JBP22VbkHTHLk3N09d3s,24292
20
+ musica/test/test_chapman.py,sha256=Wm0wLy6E1Zm8p6cLaICQO9tSy_szMkYn9E7MPCtobno,3070
21
+ musica/test/tuvx.py,sha256=rWvBcG6cgLJylqkf8M0MFMKT2AkyoaZlGdaKjVSbCR8,116
22
+ musica/test/test_analytical.py,sha256=5rIlpy5bzpTfZNv8wAND8O5KA8Wvh3Bm64pTRRlSHgc,13775
23
+ musica/test/examples/v1/full_configuration.yaml,sha256=s9Go7AQv9OFQ7zVb1k4wmDj2vpHYzVCTRqi8JZTHlUM,5235
24
+ musica/test/examples/v1/full_configuration.json,sha256=7AqPhTHodSjtV8LOPoUsA9MtCu_Xc28RVOlhNGPI9GQ,8807
25
+ musica/test/examples/v0/species.json,sha256=xKTcwh9QV9sRjLPK9GvGEnatBrRPbP857NmPG0bCXqU,565
26
+ musica/test/examples/v0/species.yaml,sha256=vUYTs7bp2AYVWHDgXBFxnCkmqdO6ysJ_ulOQTAoKa1M,283
27
+ musica/test/examples/v0/config.json,sha256=7s6g5jxH2GiEiRcZmO13IJ5k4walg1C9t-dQr9o45U4,79
28
+ musica/test/examples/v0/config.yaml,sha256=GgA18mP8ZCzOdY-AlAePK48M05PJFPeWCk-IfrPN_VE,44
29
+ musica/test/examples/v0/reactions.json,sha256=7WJhItBPtGu89vLcPMK6izW8BvwUAIjfzqwjtDmfPPg,4188
30
+ musica/test/examples/v0/reactions.yaml,sha256=uEuQOz5i7vGyn0G7KsmdWv23V2Gn0QUmexrK030CFlo,2266
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: scikit-build-core 0.11.1
2
+ Generator: scikit-build-core 0.11.3
3
3
  Root-Is-Purelib: false
4
4
  Tag: cp38-cp38-macosx_11_0_arm64
5
5
 
Binary file
@@ -1,9 +0,0 @@
1
- musica.cpython-38-darwin.so,sha256=-fTbByuC4gAtSxeFZrfxatLTvmbf5br6LV0vqJ5_lGw,1241288
2
- musica-0.10.1.dist-info/RECORD,,
3
- musica-0.10.1.dist-info/WHEEL,sha256=e866hv7yNJ_T12xjD8b55JO_Epn_ySKlJm4M2IOihtU,112
4
- musica-0.10.1.dist-info/METADATA,sha256=5j_JfxNTlmq43d2Ws6rDP35rXNJkeq95JOh6QQ1-lR4,20175
5
- musica-0.10.1.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
6
- lib/libyaml-cpp.a,sha256=WdFFkdiWcbfizpmPlB52Cgose79IXd81sD6HpunZqdM,785784
7
- lib/libmechanism_configuration.a,sha256=i_j-v_qbdDD2hNxJ3r8Sqc0YKdNZAChK7nnI1Bbe2lQ,3132280
8
- lib/libmusica.a,sha256=zG3MISDgwx7ccIWqHtfBEraFGDWuMa98Mct5PEy8_PA,1178800
9
- musica/_version.py,sha256=TS3rWSOiZ_xuWK-IU2nr-GbcS7ljUU8ZbQnp_IRge9A,19
Binary file