Skip to content

Files

Latest commit

Jun 4, 2018
a6c5fa4 · Jun 4, 2018

History

History
58 lines (44 loc) · 2.08 KB

index.md

File metadata and controls

58 lines (44 loc) · 2.08 KB
title
The IoT-Bench Repository

Home Page

Welcome to the IoT-Bench repository. This repository defines the framework for profiles, as well as a set of profiles and associated results.

Profile Framework

The general IoT-Bench framework can be found here.

Profiles

We currently have the following profiles: {% for profile in site.profiles %}

Environments

We currently have the following environments: {% for environment in site.environments %}

Protocols

We currently have results for the following protocols: {% for protocol in site.protocols %}

Results

A summary of current results is shown below:

[//]: # Show a table one row per profile, one column per environment, and in each [//]: # cell, the results we have results for.

| | {% for environment in site.environments %} {{environment.name}} | {% endfor %} | --- | {% for result in site.results %} --- | {% endfor %} {%- for profile in site.profiles %} | {{profile.name}} | {%- for environment in site.environments -%} {%- assign cell_results = site.results | where: "profile", profile.uid | where: "environment", environment.env_id -%} {%- for result in cell_results -%} {%- assign protocol = site.protocols | where: "uid", result.protocol | first -%} {%- assign profile = site.profiles | where: "uid", result.profile | first -%} {{protocol.name}} [{{result.configuration}}]
{%- endfor -%} | {%- endfor -%} {%- endfor %}