Skip to main content


Home    Install    Documentation    Cray Labs    Contact    Join us on Slack!   


License GitHub last commit GitHub deployments PyPI - Wheel PyPI - Python Version GitHub tag (latest by date) Language Code style: black codecov Downloads


SmartSim

SmartSim is made up of two parts

  1. SmartSim Infrastructure Library (This repository)
  2. SmartRedis

The two library components are designed to work together, but can also be used independently.

SmartSim is a workflow library that makes it easier to use common Machine Learning (ML) libraries, like PyTorch and TensorFlow, in High Performance Computing (HPC) simulations and applications. SmartSim launches ML infrastructure on HPC systems alongside user workloads.

SmartRedis provides an API to connect HPC workloads, particularly (MPI + X) simulations, to the ML infrastructure, namely the The Orchestrator database, launched by SmartSim.

Applications integrated with the SmartRedis clients, written in Fortran, C, C++ and Python, can send data to and remotely request SmartSim infrastructure to execute ML models and scripts on GPU or CPU. The distributed Client-Server paradigm allows for data to be seamlessly exchanged between applications at runtime without the utilization of MPI.


Table of Contents


Quick Start

The documentation has a number of tutorials that make it easy to get used to SmartSim locally before using it on your system. Each tutorial is a Jupyter notebook that can be run through the SmartSim Tutorials docker image which will run a jupyter lab with the tutorials, SmartSim, and SmartRedis installed.

docker pull ghcr.io/craylabs/smartsim-tutorials:latest
docker run -p 8888:8888 ghcr.io/craylabs/smartsim-tutorials:latest
# click on link to open jupyter lab

SmartSim Infrastructure Library

The Infrastructure Library (IL), the smartsim python package, facilitates the launch of Machine Learning and simulation workflows. The Python interface of the IL creates, configures, launches and monitors applications.

Experiments

The Experiment object is the main interface of SmartSim. Through the Experiment users can create references to user applications called Models.

Hello World

Below is a simple example of a workflow that uses the IL to launch hello world program using the local launcher which is designed for laptops and single nodes.

from smartsim import Experiment

exp = Experiment("simple", launcher="local")

settings = exp.create_run_settings("echo", exe_args="Hello World")
model = exp.create_model("hello_world", settings)

exp.start(model, block=True)
print(exp.get_status(model))

Hello World MPI

The Experiment.create_run_settings method returns a RunSettings object which defines how a model is launched. There are many types of RunSettings supported by SmartSim.

  • RunSettings
  • MpirunSettings
  • SrunSettings
  • AprunSettings
  • JsrunSettings

The following example launches a hello world MPI program using the local launcher for single compute node, workstations and laptops.

from smartsim import Experiment

exp = Experiment("hello_world", launcher="local")
mpi_settings = exp.create_run_settings(exe="echo",
                                       exe_args="Hello World!",
                                       run_command="mpirun")
mpi_settings.set_tasks(4)

mpi_model = exp.create_model("hello_world", mpi_settings)

exp.start(mpi_model, block=True)
print(exp.get_status(model))

If an argument of run_command="auto" (the default) is passed to Experiment.create_run_settings, SmartSim will attempt to find a run command on the system with which it has a corresponding RunSettings class. If one can be found, Experiment.create_run_settings will instance and return an object of that type.


Experiments on HPC Systems

SmartSim integrates with common HPC schedulers providing batch and interactive launch capabilities for all applications.

  • Slurm
  • LSF
  • PBSPro
  • Local (for laptops/single node, no batch)

Interactive Launch Example

The following launches the same hello_world model in an interactive allocation.

# get interactive allocation (Slurm)
salloc -N 3 --ntasks-per-node=20 --ntasks 60 --exclusive -t 00:10:00

# get interactive allocation (PBS)
qsub -l select=3:ncpus=20 -l walltime=00:10:00 -l place=scatter -I -q <queue>

# get interactive allocation (LSF)
bsub -Is -W 00:10 -nnodes 3 -P <project> $SHELL

This same script will run on a SLURM, PBS, or LSF system as the launcher is set to auto in the Experiment initialization. The run command like mpirun, aprun or srun will be automatically detected from what is available on the system.

# hello_world.py
from smartsim import Experiment

exp = Experiment("hello_world_exp", launcher="auto")
run = exp.create_run_settings(exe="echo", exe_args="Hello World!")
run.set_tasks(60)
run.set_tasks_per_node(20)

model = exp.create_model("hello_world", run)
exp.start(model, block=True, summary=True)

print(exp.get_status(model))
# in interactive terminal
python hello_world.py

This script could also be launched in a batch file instead of an interactive terminal. For example, for Slurm:

#!/bin/bash
#SBATCH --exclusive
#SBATCH --nodes=3
#SBATCH --ntasks-per-node=20
#SBATCH --time=00:10:00

python /path/to/hello_world.py
# on Slurm system
sbatch run_hello_world.sh

Batch Launch Examples

SmartSim can also launch workloads in a batch directly from Python, without the need for a batch script. Users can launch groups of Model instances in a Ensemble.

The following launches 4 replicas of the the same hello_world model.

# hello_ensemble.py
from smartsim import Experiment

exp = Experiment("hello_world_batch", launcher="auto")

# define resources for all ensemble members
batch = exp.create_batch_settings(nodes=4, time="00:10:00", account="12345-Cray")
batch.set_queue("premium")

# define how each member should run
run = exp.create_run_settings(exe="echo", exe_args="Hello World!")
run.set_tasks(60)
run.set_tasks_per_node(20)

ensemble = exp.create_ensemble("hello_world",
                               batch_settings=batch,
                               run_settings=run,
                               replicas=4)
exp.start(ensemble, block=True, summary=True)

print(exp.get_status(ensemble))
python hello_ensemble.py

Similar to the interactive example, this same script will run on a SLURM, PBS, or LSF system as the launcher is set to auto in the Experiment initialization. Local launching does not support batch workloads.


Infrastructure Library Applications

  • Orchestrator - In-memory data store and Machine Learning Inference (Redis + RedisAI)

Redis + RedisAI

The Orchestrator is an in-memory database that utilizes Redis and RedisAI to provide a distributed database and access to ML runtimes from Fortran, C, C++ and Python.

SmartSim provides classes that make it simple to launch the database in many configurations and optionally form a distributed database cluster. The examples below will show how to launch the database. Later in this document we will show how to use the database to perform ML inference and processing.

Local Launch

The following script launches a single database using the local launcher.

Experiment.create_database will initialize an Orchestrator instance corresponding to the specified launcher.

# run_db_local.py
from smartsim import Experiment

exp = Experiment("local-db", launcher="local")
db = exp.create_database(port=6780,       # database port
                         interface="lo")  # network interface to use

# by default, SmartSim never blocks execution after the database is launched.
exp.start(db)

# launch models, analysis, training, inference sessions, etc
# that communicate with the database using the SmartRedis clients

# stop the database
exp.stop(db)

Interactive Launch

The Orchestrator, like Ensemble instances, can be launched locally, in interactive allocations, or in a batch.

The following example launches a distributed (3 node) database cluster in an interactive allocation.

# get interactive allocation (Slurm)
salloc -N 3 --ntasks-per-node=1 --exclusive -t 00:10:00

# get interactive allocation (PBS)
qsub -l select=3:ncpus=1 -l walltime=00:10:00 -l place=scatter -I -q queue

# get interactive allocation (LSF)
bsub -Is -W 00:10 -nnodes 3 -P project $SHELL
# run_db.py
from smartsim import Experiment

# auto specified to work across launcher types
exp = Experiment("db-on-slurm", launcher="auto")
db_cluster = exp.create_database(db_nodes=3,
                                 db_port=6780,
                                 batch=False,
                                 interface="ipogif0")
exp.start(db_cluster)

print(f"Orchestrator launched on nodes: {db_cluster.hosts}")
# launch models, analysis, training, inference sessions, etc
# that communicate with the database using the SmartRedis clients

exp.stop(db_cluster)
# in interactive terminal
python run_db.py

Batch Launch

The Orchestrator can also be launched in a batch without the need for an interactive allocation. SmartSim will create the batch file, submit it to the batch system, and then wait for the database to be launched. Users can hit CTRL-C to cancel the launch if needed.

# run_db_batch.py
from smartsim import Experiment

exp = Experiment("batch-db-on-pbs", launcher="auto")
db_cluster = exp.create_database(db_nodes=3,
                                 db_port=6780,
                                 batch=True,
                                 time="00:10:00",
                                 interface="ib0",
                                 account="12345-Cray",
                                 queue="cl40")

exp.start(db_cluster)

print(f"Orchestrator launched on nodes: {db_cluster.hosts}")
# launch models, analysis, training, inference sessions, etc
# that communicate with the database using the SmartRedis clients

exp.stop(db_cluster)
python run_db_batch.py

SmartRedis

The SmartSim IL Clients (SmartRedis) are implementations of Redis clients that implement the RedisAI API with additions specific to scientific workflows.

SmartRedis clients are available in Fortran, C, C++, and Python. Users can seamlessly pull and push data from the Orchestrator from different languages.

Tensors

Tensors are the fundamental data structure for the SmartRedis clients. The Clients use the native array format of the language. For example, in Python, a tensor is a NumPy array while the C/C++ clients accept nested and contiguous arrays.

When stored in the database, all tensors are stored in the same format. Hence, any language can receive a tensor from the database no matter what supported language the array was sent from. This enables applications in different languages to communicate numerical data with each other at runtime.

For more information on the tensor data structure, see the documentation

Datasets

Datasets are collections of Tensors and associated metadata. The Dataset class is a user space object that can be created, added to, sent to, and retrieved from the Orchestrator.

For an example of how to use the Dataset class, see the Online Analysis example

For more information on the API, see the API documentation

SmartSim + SmartRedis Tutorials

SmartSim and SmartRedis were designed to work together. When launched through SmartSim, applications using the SmartRedis clients are directly connected to any Orchestrator launched in the same Experiment.

In this way, a SmartSim Experiment becomes a driver for coupled ML and Simulation workflows. The following are simple examples of how to use SmartSim and SmartRedis together.

Run the Tutorials

Each tutorial is a Jupyter notebook that can be run through the SmartSim Tutorials docker image which will run a jupyter lab with the tutorials, SmartSim, and SmartRedis installed.

docker pull ghcr.io/craylabs/smartsim-tutorials:latest
docker run -p 8888:8888 ghcr.io/craylabs/smartsim-tutorials:latest

Each of the following examples can be found in the SmartSim documentation.

Online Analysis

Using SmartSim, HPC applications can be monitored in real time by streaming data from the application to the database. SmartRedis clients can retrieve the data, process, analyze it, and finally store any updated data back to the database for use by other clients.

The following is an example of how a user could monitor and analyze a simulation. The example here uses the Python client; however, SmartRedis clients are also available for C, C++, and Fortran. All SmartRedis clients implement the same API.

The example will produce this visualization while the simulation is running.

Lattice Boltzmann Simulation

Using a Lattice Boltzmann Simulation, this example demonstrates how to use the SmartRedis Dataset API to stream data over the Orchestrator deployed by SmartSim.

The simulation will be composed of two parts: fv_sim.py which will generate data from the Simulation and store it in the Orchestrator, and driver.py which will launch the Orchestrator, start fv_sim.py and check for data posted to the Orchestrator to plot updates in real-time.

The following code highlights the sections of fv_sim.py that are responsible for transmitting the data needed to plot timesteps of the simulation to the Orchestrator.

# fv_sim.py
from smartredis import Client
import numpy as np

# initialization code omitted

# save cylinder location to database
cylinder = (X - x_res/4)**2 + (Y - y_res/2)**2 < (y_res/4)**2 # bool array
client.put_tensor("cylinder", cylinder.astype(np.int8))

for time_step in range(steps): # simulation loop
    for i, cx, cy in zip(idxs, cxs, cys):
        F[:,:,i] = np.roll(F[:,:,i], cx, axis=1)
        F[:,:,i] = np.roll(F[:,:,i], cy, axis=0)

    bndryF = F[cylinder,:]
    bndryF = bndryF[:,[0,5,6,7,8,1,2,3,4]]

    rho = np.sum(F, 2)
    ux  = np.sum(F * cxs, 2) / rho
    uy  = np.sum(F * cys, 2) / rho

    Feq = np.zeros(F.shape)
    for i, cx, cy, w in zip(idxs, cxs, cys, weights):
        Feq[:,:,i] = rho * w * ( 1 + 3*(cx*ux+cy*uy)  + 9*(cx*ux+cy*uy)**2/2 - 3*(ux**2+uy**2)/2 )
    F += -(1.0/tau) * (F - Feq)
    F[cylinder,:] = bndryF

    # Create a SmartRedis dataset with vorticity data
    dataset = Dataset(f"data_{str(time_step)}")
    dataset.add_tensor("ux", ux)
    dataset.add_tensor("uy", uy)

    # Put Dataset in db at key "data_{time_step}"
    client.put_dataset(dataset)

The driver script, driver.py, launches the Orchestrator database and runs the simulation in a non-blocking fashion. The driver script then uses the SmartRedis client to pull the DataSet and plot the vorticity while the simulation is running.

# driver.py
time_steps, seed = 3000, 42

exp = Experiment("finite_volume_simulation", launcher="local")

db = exp.create_database(port=6780,        # database port
                         interface="lo")   # network interface db should listen on

# create the lb simulation Model reference
settings = exp.create_run_settings("python",
                                   exe_args=["fv_sim.py",
                                             f"--seed={seed}",
                                             f"--steps={time_steps}"])
model = exp.create_model("fv_simulation", settings)
model.attach_generator_files(to_copy="fv_sim.py")
exp.generate(db, model, overwrite=True)

exp.start(db)
client = Client(address=db.get_address()[0], cluster=False)

# start simulation (non-blocking)
exp.start(model, block=False, summary=True)

# poll until simulation starts and then retrieve data
client.poll_key("cylinder", 200, 100)
cylinder = client.get_tensor("cylinder").astype(bool)

for i in range(0, time_steps):
    client.poll_key(f"data_{str(i)}", 10, 1000)
    dataset = client.get_dataset(f"data_{str(i)}")
    ux, uy = dataset.get_tensor("ux"), dataset.get_tensor("uy")

    # analysis/plotting code omitted

exp.stop(db)

For more examples of how to use SmartSim and SmartRedis together to perform online analysis, please see the online analsysis tutorial section of the SmartSim documentation.

Online Processing

Each of the SmartRedis clients can be used to remotely execute TorchScript code on data stored within the database. The scripts/functions are executed in the Torch runtime linked into the database.

Any of the functions available in the TorchScript builtins can be saved as "script" or "functions" in the database and used directly by any of the SmartRedis Clients.

Singular Value Decomposition

For example, the following code sends the built-in Singular Value Decomposition to the database and execute it on a dummy tensor.

import numpy as np
from smartredis import Client

# don't even need to import torch
def calc_svd(input_tensor):
    return input_tensor.svd()


# connect a client to the database
client = Client(cluster=False)

# get dummy data
tensor = np.random.randint(0, 100, size=(5, 3, 2)).astype(np.float32)

client.put_tensor("input", tensor)
client.set_function("svd", calc_svd)

client.run_script("svd", "calc_svd", "input", ["U", "S", "V"])
# results are not retrieved immediately in case they need
# to be fed to another function/model

U = client.get_tensor("U")
S = client.get_tensor("S")
V = client.get_tensor("V")
print(f"U: {U}, S: {S}, V: {V}")

The processing capabilities make it simple to form computational pipelines of functions, scripts, and models.

See the full TorchScript Language Reference documentation for more information on available methods, functions, and how to create your own.

Online Inference

SmartSim supports the following frameworks for querying Machine Learning models from C, C++, Fortran and Python with the SmartRedis Clients:

RedisAI Version Libraries Supported Version
1.2.7 PyTorch 2.0.1
TensorFlow\Keras 2.13.1
ONNX 1.14.1

A number of other libraries are supported through ONNX, like SciKit-Learn and XGBoost.

Note: It's important to remember that SmartSim utilizes a client-server model. To run experiments that utilize the above frameworks, you must first start the Orchestrator database with SmartSim.

PyTorch CNN Example

The example below shows how to spin up a database with SmartSim and invoke a PyTorch CNN model using the SmartRedis clients.

# simple_torch_inference.py
import io
import torch
import torch.nn as nn
from smartredis import Client
from smartsim import Experiment

exp = Experiment("simple-online-inference", launcher="local")
db = exp.create_database(port=6780, interface="lo")

class Net(nn.Module):
    def __init__(self):
        super().__init__()
        self.conv = nn.Conv2d(1, 1, 3)

    def forward(self, x):
        return self.conv(x)

torch_model = Net()
example_forward_input = torch.rand(1, 1, 3, 3)
module = torch.jit.trace(torch_model, example_forward_input)
model_buffer = io.BytesIO()
torch.jit.save(module, model_buffer)

exp.start(db, summary=True)

address = db.get_address()[0]
client = Client(address=address, cluster=False)

client.put_tensor("input", example_forward_input.numpy())
client.set_model("cnn", model_buffer.getvalue(), "TORCH", device="CPU")
client.run_model("cnn", inputs=["input"], outputs=["output"])
output = client.get_tensor("output")
print(f"Prediction: {output}")

exp.stop(db)

The above python code can be run like any normal python script:

python simple_torch_inference.py

For more examples of how to use SmartSim and SmartRedis together to perform online inference, please see the online inference tutorials section of the SmartSim documentation.


Publications

The following are public presentations or publications using SmartSim


Cite

Please use the following citation when referencing SmartSim, SmartRedis, or any SmartSim related work:

Partee et al., “Using Machine Learning at Scale in HPC Simulations with SmartSim: An Application to Ocean Climate Modeling”, Journal of Computational Science, Volume 62, 2022, 101707, ISSN 1877-7503

Available: https://doi.org/10.1016/j.jocs.2022.101707.

bibtex

@article{PARTEE2022101707,
    title = {Using Machine Learning at scale in numerical simulations with SmartSim: An application to ocean climate modeling},
    journal = {Journal of Computational Science},
    volume = {62},
    pages = {101707},
    year = {2022},
    issn = {1877-7503},
    doi = {https://doi.org/10.1016/j.jocs.2022.101707},
    url = {https://www.sciencedirect.com/science/article/pii/S1877750322001065},
    author = {Sam Partee and Matthew Ellis and Alessandro Rigazzi and Andrew E. Shao and Scott Bachman and Gustavo Marques and Benjamin Robbins},
    keywords = {Deep learning, Numerical simulation, Climate modeling, High performance computing, SmartSim},
}

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

smartsim-0.6.1.tar.gz (257.2 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

smartsim-0.6.1-cp311-cp311-musllinux_1_1_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

smartsim-0.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

smartsim-0.6.1-cp311-cp311-macosx_10_9_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

smartsim-0.6.1-cp310-cp310-musllinux_1_1_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

smartsim-0.6.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

smartsim-0.6.1-cp310-cp310-macosx_10_9_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

smartsim-0.6.1-cp39-cp39-musllinux_1_1_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

smartsim-0.6.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

smartsim-0.6.1-cp39-cp39-macosx_10_9_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

smartsim-0.6.1-cp38-cp38-musllinux_1_1_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

smartsim-0.6.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

smartsim-0.6.1-cp38-cp38-macosx_10_9_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

Details for the file smartsim-0.6.1.tar.gz.

File metadata

  • Download URL: smartsim-0.6.1.tar.gz
  • Upload date:
  • Size: 257.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.8

File hashes

Hashes for smartsim-0.6.1.tar.gz
Algorithm Hash digest
SHA256 a25730ccf53e8ea86122ca072da4b002df157934f9481cfc06f3e36c9ca5ce20
MD5 ca865bc0d048d92e8a1dbabaaeb96249
BLAKE2b-256 1fc17f21255fc54e24a22b7681c5c19865fc1cb1066edb717d7711c8db0f0660

See more details on using hashes here.

File details

Details for the file smartsim-0.6.1-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for smartsim-0.6.1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 fcd4d5fe6cbe7bc47aed986cf7779aa2c5aa242f8a1897567a2d6d7e6c564d99
MD5 e6f509d49c9ec570ad899db55369175a
BLAKE2b-256 507a1de76f7357bf4968c8bd4b4e87cd043eebabcc3883c63c791db28de6a41f

See more details on using hashes here.

File details

Details for the file smartsim-0.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for smartsim-0.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b6c0624f242ea89bea3912b6f84f21ba5b5c2b6e7a5a7b4021375e4f9b4cf5cf
MD5 226f775a411bf09077862b367983ad06
BLAKE2b-256 53b7d09010fd71711a1a727cd4d3758b5678926ca60fb692503ba898e3933155

See more details on using hashes here.

File details

Details for the file smartsim-0.6.1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for smartsim-0.6.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9ec3ccd39992ddfacb6589177e90a4cc6f3597e41d608db49e9b07ae9d960edd
MD5 d6ac864cd8dc52970b3aefe6cd9f0b5f
BLAKE2b-256 7a2b5ee90df7612a0c537004781a53ea5be39b60894bef97c95734470b42834f

See more details on using hashes here.

File details

Details for the file smartsim-0.6.1-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for smartsim-0.6.1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 acf28f02453d42fdc964520b19d3ab13f163fe2549ac299ab66ccf16363ec30e
MD5 776499aa7366c8d341bde4ef53e4391b
BLAKE2b-256 b08725e793307e46ca2b6035f371058f3775920abb035837694dfc50b5c5f3d7

See more details on using hashes here.

File details

Details for the file smartsim-0.6.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for smartsim-0.6.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3cbd97d9074f4c369cb343ee1cad34f1823051cf525ffcba0c68022681d260bc
MD5 c23c33481a789eb92d554b34ca5f6105
BLAKE2b-256 01e414c466d7c5ad97936ae3debe6efbd8b1651d6428d07f23d27d54ae4dd5cc

See more details on using hashes here.

File details

Details for the file smartsim-0.6.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for smartsim-0.6.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 89af00f031e8d5258801d939cc1763d0fbd950867afd3a0cea32bb33854863bc
MD5 e7408177de215607a94fca61d6255ec0
BLAKE2b-256 584435c936c55bb995197708e0d4074e3e77a2f0b6f2c3839ff51654d940773e

See more details on using hashes here.

File details

Details for the file smartsim-0.6.1-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for smartsim-0.6.1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d008bf6062f8a6d243aa26a97db4451ce580f98080959e8519ff4b48e384cac4
MD5 2b91c3eb7d34c5d00d84b91635a88423
BLAKE2b-256 97514a616776468db493568cb7fa4a363562273f878e5655f8ce3e8bddc6d951

See more details on using hashes here.

File details

Details for the file smartsim-0.6.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for smartsim-0.6.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 be7e3bb50036f5da673452f2c277b8f9dc06d2612463d27c501083e71738b10b
MD5 52d11b1cf7c0c823de4ed9e189203873
BLAKE2b-256 fc1a083b0cb5c5c371619bd52c3460ce207a9b8aebdb7c3a4df9caa19e66828d

See more details on using hashes here.

File details

Details for the file smartsim-0.6.1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for smartsim-0.6.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e0327158d4aff65419e4f8d8d0beeadfd70f6dee2bf1b8034216c5ea89115572
MD5 0ed03ee0fe4c67915811048bebd0625e
BLAKE2b-256 4df178ae57cb3d58a2e095af3cb1c781b7aad3cf7613da69f68ffdb3056ca316

See more details on using hashes here.

File details

Details for the file smartsim-0.6.1-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for smartsim-0.6.1-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6db582d7529326e5336e3f17f4abee4bc25800e289cf7015239ce7818af4f02e
MD5 ecc2095a40eee38a5ade15ad994b1d1c
BLAKE2b-256 2f8360a95c05589aa6f6504f564919348bfe411d9b08bd1f8f7a37a737f18f39

See more details on using hashes here.

File details

Details for the file smartsim-0.6.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for smartsim-0.6.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 79e9fb37bef37612abec1b3d45397232b08777c0b6d6468f9a87bbe7005aa596
MD5 1c5c78caa01bd25f91d3224b6a714673
BLAKE2b-256 ff7ccd3cb4b40bbd09129b11770ea175af83fe52884732b3475b41f6c45dcd9c

See more details on using hashes here.

File details

Details for the file smartsim-0.6.1-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for smartsim-0.6.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a6070cf0a12e9dee58b9af7f7ebf3757760511cfd596807181127af045f0b369
MD5 5232cdb680aa7a2a97feb24537e31154
BLAKE2b-256 62e46cf1b5156d30a3f505546aa717ed10e2af400f8cbe6d858ffe8052ca0564

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page