repo stringlengths 7 90 | file_url stringlengths 81 315 | file_path stringlengths 4 228 | content stringlengths 0 32.8k | language stringclasses 1
value | license stringclasses 7
values | commit_sha stringlengths 40 40 | retrieved_at stringdate 2026-01-04 14:38:15 2026-01-05 02:33:18 | truncated bool 2
classes |
|---|---|---|---|---|---|---|---|---|
lbcb-sci/RiNALMo | https://github.com/lbcb-sci/RiNALMo/blob/2c2c5c14a5ae609d8c560a5d9ca32e51e0288955/rinalmo/data/constants.py | rinalmo/data/constants.py | # Tokens
ADENINE_TKN = 'A'
CYTOSINE_TKN = 'C'
URACIL_TKN = 'U'
GUANINE_TKN = 'G'
THYMINE_TKN = 'T'
INOSINE_TKN = 'I'
ANY_NUCLEOTIDE_TKN = 'N'
# Tokens from https://en.wikipedia.org/wiki/FASTA_format
RNA_TOKENS = [ADENINE_TKN, CYTOSINE_TKN, GUANINE_TKN, THYMINE_TKN, INOSINE_TKN, "R", "Y", "K", "M", "S", "W", "B"... | python | Apache-2.0 | 2c2c5c14a5ae609d8c560a5d9ca32e51e0288955 | 2026-01-05T07:11:03.926260Z | false |
lbcb-sci/RiNALMo | https://github.com/lbcb-sci/RiNALMo/blob/2c2c5c14a5ae609d8c560a5d9ca32e51e0288955/rinalmo/data/alphabet.py | rinalmo/data/alphabet.py | from typing import List
from rinalmo.data.constants import *
class Alphabet:
def __init__(
self,
standard_tkns: List[str] = RNA_TOKENS,
special_tkns: List[str] = [CLS_TKN, PAD_TKN, EOS_TKN, UNK_TKN, MASK_TKN],
):
super().__init__()
self.standard_tkns = standard_tkns
... | python | Apache-2.0 | 2c2c5c14a5ae609d8c560a5d9ca32e51e0288955 | 2026-01-05T07:11:03.926260Z | false |
lbcb-sci/RiNALMo | https://github.com/lbcb-sci/RiNALMo/blob/2c2c5c14a5ae609d8c560a5d9ca32e51e0288955/rinalmo/data/downstream/ncrna_classification/datamodule.py | rinalmo/data/downstream/ncrna_classification/datamodule.py | from torch.utils.data import DataLoader
import torch
import lightning.pytorch as pl
from typing import Union, Optional
from pathlib import Path
from rinalmo.data.alphabet import Alphabet
from rinalmo.data.constants import *
from rinalmo.data.downstream.ncrna_classification.dataset import ncRNADataset
from rinalmo.ut... | python | Apache-2.0 | 2c2c5c14a5ae609d8c560a5d9ca32e51e0288955 | 2026-01-05T07:11:03.926260Z | false |
lbcb-sci/RiNALMo | https://github.com/lbcb-sci/RiNALMo/blob/2c2c5c14a5ae609d8c560a5d9ca32e51e0288955/rinalmo/data/downstream/ncrna_classification/dataset.py | rinalmo/data/downstream/ncrna_classification/dataset.py | import torch
from torch.utils.data import Dataset
import pandas as pd
from typing import Union
from pathlib import Path
from rinalmo.data.alphabet import Alphabet
class ncRNADataset(Dataset):
def __init__(
self,
csv_path: Union[Path, str],
alphabet: Alphabet
):
self.data = p... | python | Apache-2.0 | 2c2c5c14a5ae609d8c560a5d9ca32e51e0288955 | 2026-01-05T07:11:03.926260Z | false |
lbcb-sci/RiNALMo | https://github.com/lbcb-sci/RiNALMo/blob/2c2c5c14a5ae609d8c560a5d9ca32e51e0288955/rinalmo/data/downstream/expression_level/datamodule.py | rinalmo/data/downstream/expression_level/datamodule.py | from torch.utils.data import DataLoader
import torch
import lightning.pytorch as pl
from typing import Union, Optional
from pathlib import Path
from rinalmo.data.alphabet import Alphabet
from rinalmo.data.constants import *
from rinalmo.data.downstream.expression_level.dataset import ExpressionLevelDataset
from rina... | python | Apache-2.0 | 2c2c5c14a5ae609d8c560a5d9ca32e51e0288955 | 2026-01-05T07:11:03.926260Z | false |
lbcb-sci/RiNALMo | https://github.com/lbcb-sci/RiNALMo/blob/2c2c5c14a5ae609d8c560a5d9ca32e51e0288955/rinalmo/data/downstream/expression_level/dataset.py | rinalmo/data/downstream/expression_level/dataset.py | import torch
from torch.utils.data import Dataset
import pandas as pd
from typing import Union
from pathlib import Path
from rinalmo.data.alphabet import Alphabet
class ExpressionLevelDataset(Dataset):
def __init__(
self,
csv_path: Union[Path, str],
alphabet: Alphabet
):
sel... | python | Apache-2.0 | 2c2c5c14a5ae609d8c560a5d9ca32e51e0288955 | 2026-01-05T07:11:03.926260Z | false |
lbcb-sci/RiNALMo | https://github.com/lbcb-sci/RiNALMo/blob/2c2c5c14a5ae609d8c560a5d9ca32e51e0288955/rinalmo/data/downstream/splice_site_prediction/datamodule.py | rinalmo/data/downstream/splice_site_prediction/datamodule.py | from torch.utils.data import DataLoader
import pytorch_lightning as pl
from typing import Union, Optional
from pathlib import Path
from rinalmo.data.alphabet import Alphabet
from rinalmo.data.downstream.splice_site_prediction.dataset import SpliceSiteDataset, SpliceSiteTestDataset
from rinalmo.utils.download import ... | python | Apache-2.0 | 2c2c5c14a5ae609d8c560a5d9ca32e51e0288955 | 2026-01-05T07:11:03.926260Z | false |
lbcb-sci/RiNALMo | https://github.com/lbcb-sci/RiNALMo/blob/2c2c5c14a5ae609d8c560a5d9ca32e51e0288955/rinalmo/data/downstream/splice_site_prediction/dataset.py | rinalmo/data/downstream/splice_site_prediction/dataset.py | import torch
from torch.utils.data import Dataset, Subset
import pandas as pd
import numpy as np
from typing import Union
from pathlib import Path
from rinalmo.data.alphabet import Alphabet
from Bio import SeqIO
class SpliceSiteDataset(Dataset):
def __init__(
self,
ss_csv: Union[str, Path],
... | python | Apache-2.0 | 2c2c5c14a5ae609d8c560a5d9ca32e51e0288955 | 2026-01-05T07:11:03.926260Z | false |
lbcb-sci/RiNALMo | https://github.com/lbcb-sci/RiNALMo/blob/2c2c5c14a5ae609d8c560a5d9ca32e51e0288955/rinalmo/data/downstream/ribosome_loading/datamodule.py | rinalmo/data/downstream/ribosome_loading/datamodule.py | from torch.utils.data import DataLoader
import lightning.pytorch as pl
from typing import Union, Optional
from pathlib import Path
from rinalmo.data.alphabet import Alphabet
from rinalmo.data.downstream.ribosome_loading.dataset import RibosomeLoadingDataset
from rinalmo.utils.download import download_ribosome_loadin... | python | Apache-2.0 | 2c2c5c14a5ae609d8c560a5d9ca32e51e0288955 | 2026-01-05T07:11:03.926260Z | false |
lbcb-sci/RiNALMo | https://github.com/lbcb-sci/RiNALMo/blob/2c2c5c14a5ae609d8c560a5d9ca32e51e0288955/rinalmo/data/downstream/ribosome_loading/dataset.py | rinalmo/data/downstream/ribosome_loading/dataset.py | import torch
from torch.utils.data import Dataset, Subset
import pandas as pd
from typing import Union
from pathlib import Path
from rinalmo.data.alphabet import Alphabet
MIN_EVAL_SEQ_LEN = 25
MAX_EVAL_SEQ_LEN = 100
def _generate_eval_set_eq_sampled_lens(df: pd.DataFrame, min_seq_len: int, max_seq_len: int, num_sa... | python | Apache-2.0 | 2c2c5c14a5ae609d8c560a5d9ca32e51e0288955 | 2026-01-05T07:11:03.926260Z | false |
lbcb-sci/RiNALMo | https://github.com/lbcb-sci/RiNALMo/blob/2c2c5c14a5ae609d8c560a5d9ca32e51e0288955/rinalmo/data/downstream/translation_efficiency/datamodule.py | rinalmo/data/downstream/translation_efficiency/datamodule.py | from torch.utils.data import DataLoader
import torch
from sklearn.model_selection import KFold
import lightning.pytorch as pl
from typing import Union, Optional
from pathlib import Path
from rinalmo.data.alphabet import Alphabet
from rinalmo.data.constants import *
from rinalmo.data.downstream.translation_efficienc... | python | Apache-2.0 | 2c2c5c14a5ae609d8c560a5d9ca32e51e0288955 | 2026-01-05T07:11:03.926260Z | false |
lbcb-sci/RiNALMo | https://github.com/lbcb-sci/RiNALMo/blob/2c2c5c14a5ae609d8c560a5d9ca32e51e0288955/rinalmo/data/downstream/translation_efficiency/dataset.py | rinalmo/data/downstream/translation_efficiency/dataset.py | import torch
from torch.utils.data import Dataset
import pandas as pd
from typing import Union
from pathlib import Path
from rinalmo.data.alphabet import Alphabet
class TranslationEffDataset(Dataset):
def __init__(
self,
csv_path: Union[Path, str],
alphabet: Alphabet
):
self... | python | Apache-2.0 | 2c2c5c14a5ae609d8c560a5d9ca32e51e0288955 | 2026-01-05T07:11:03.926260Z | false |
lbcb-sci/RiNALMo | https://github.com/lbcb-sci/RiNALMo/blob/2c2c5c14a5ae609d8c560a5d9ca32e51e0288955/rinalmo/data/downstream/secondary_structure/datamodule.py | rinalmo/data/downstream/secondary_structure/datamodule.py | from torch.utils.data import DataLoader
import lightning.pytorch as pl
from typing import Union, Optional
from pathlib import Path
from rinalmo.data.alphabet import Alphabet
from rinalmo.data.downstream.secondary_structure.dataset import SecondaryStructureDataset
from rinalmo.utils.download import download_spot_rna... | python | Apache-2.0 | 2c2c5c14a5ae609d8c560a5d9ca32e51e0288955 | 2026-01-05T07:11:03.926260Z | false |
lbcb-sci/RiNALMo | https://github.com/lbcb-sci/RiNALMo/blob/2c2c5c14a5ae609d8c560a5d9ca32e51e0288955/rinalmo/data/downstream/secondary_structure/dataset.py | rinalmo/data/downstream/secondary_structure/dataset.py | import torch
from torch.utils.data import Dataset
from typing import Union
from pathlib import Path
from rinalmo.data.alphabet import Alphabet
from rinalmo.utils.sec_struct import parse_sec_struct_file
class SecondaryStructureDataset(Dataset):
def __init__(
self,
data_dir: Union[str, Path],
... | python | Apache-2.0 | 2c2c5c14a5ae609d8c560a5d9ca32e51e0288955 | 2026-01-05T07:11:03.926260Z | false |
SymbioticLab/Salus | https://github.com/SymbioticLab/Salus/blob/7b7f5e0651889f7c1242108f1fb6f5e78cbfefec/scripts/parse_exp15.py | scripts/parse_exp15.py | #!/usr/bin/env python3
#
# Copyright 2019 Peifeng Yu <peifeng@umich.edu>
#
# This file is part of Salus
# (see https://github.com/SymbioticLab/Salus).
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the L... | python | Apache-2.0 | 7b7f5e0651889f7c1242108f1fb6f5e78cbfefec | 2026-01-05T07:11:07.113380Z | false |
SymbioticLab/Salus | https://github.com/SymbioticLab/Salus/blob/7b7f5e0651889f7c1242108f1fb6f5e78cbfefec/scripts/sessioniter.py | scripts/sessioniter.py | #!/usr/bin/env python3
#
# Copyright 2019 Peifeng Yu <peifeng@umich.edu>
#
# This file is part of Salus
# (see https://github.com/SymbioticLab/Salus).
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the L... | python | Apache-2.0 | 7b7f5e0651889f7c1242108f1fb6f5e78cbfefec | 2026-01-05T07:11:07.113380Z | false |
SymbioticLab/Salus | https://github.com/SymbioticLab/Salus/blob/7b7f5e0651889f7c1242108f1fb6f5e78cbfefec/scripts/parse_exp62.py | scripts/parse_exp62.py | #!/usr/bin/env python3
#
# Copyright 2019 Peifeng Yu <peifeng@umich.edu>
#
# This file is part of Salus
# (see https://github.com/SymbioticLab/Salus).
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the Lic... | python | Apache-2.0 | 7b7f5e0651889f7c1242108f1fb6f5e78cbfefec | 2026-01-05T07:11:07.113380Z | false |
SymbioticLab/Salus | https://github.com/SymbioticLab/Salus/blob/7b7f5e0651889f7c1242108f1fb6f5e78cbfefec/scripts/jctutils.py | scripts/jctutils.py | #!/usr/bin/env python3
#
# Copyright 2019 Peifeng Yu <peifeng@umich.edu>
#
# This file is part of Salus
# (see https://github.com/SymbioticLab/Salus).
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the Lic... | python | Apache-2.0 | 7b7f5e0651889f7c1242108f1fb6f5e78cbfefec | 2026-01-05T07:11:07.113380Z | false |
SymbioticLab/Salus | https://github.com/SymbioticLab/Salus/blob/7b7f5e0651889f7c1242108f1fb6f5e78cbfefec/scripts/parse_nvvp.py | scripts/parse_nvvp.py | #
# Copyright 2019 Peifeng Yu <peifeng@umich.edu>
#
# This file is part of Salus
# (see https://github.com/SymbioticLab/Salus).
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http:... | python | Apache-2.0 | 7b7f5e0651889f7c1242108f1fb6f5e78cbfefec | 2026-01-05T07:11:07.113380Z | false |
SymbioticLab/Salus | https://github.com/SymbioticLab/Salus/blob/7b7f5e0651889f7c1242108f1fb6f5e78cbfefec/scripts/parse_card266.py | scripts/parse_card266.py | #!/usr/bin/env python3
#
# Copyright 2019 Peifeng Yu <peifeng@umich.edu>
#
# This file is part of Salus
# (see https://github.com/SymbioticLab/Salus).
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the L... | python | Apache-2.0 | 7b7f5e0651889f7c1242108f1fb6f5e78cbfefec | 2026-01-05T07:11:07.113380Z | false |
SymbioticLab/Salus | https://github.com/SymbioticLab/Salus/blob/7b7f5e0651889f7c1242108f1fb6f5e78cbfefec/scripts/parse_exp11.py | scripts/parse_exp11.py | #!/usr/bin/env python3
#
# Copyright 2019 Peifeng Yu <peifeng@umich.edu>
#
# This file is part of Salus
# (see https://github.com/SymbioticLab/Salus).
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the L... | python | Apache-2.0 | 7b7f5e0651889f7c1242108f1fb6f5e78cbfefec | 2026-01-05T07:11:07.113380Z | false |
SymbioticLab/Salus | https://github.com/SymbioticLab/Salus/blob/7b7f5e0651889f7c1242108f1fb6f5e78cbfefec/scripts/parse_card262.py | scripts/parse_card262.py | #!/usr/bin/env python3
#
# Copyright 2019 Peifeng Yu <peifeng@umich.edu>
#
# This file is part of Salus
# (see https://github.com/SymbioticLab/Salus).
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the L... | python | Apache-2.0 | 7b7f5e0651889f7c1242108f1fb6f5e78cbfefec | 2026-01-05T07:11:07.113380Z | false |
SymbioticLab/Salus | https://github.com/SymbioticLab/Salus/blob/7b7f5e0651889f7c1242108f1fb6f5e78cbfefec/scripts/prepare_memory.py | scripts/prepare_memory.py | #!/usr/bin/env python3
#
# Copyright 2019 Peifeng Yu <peifeng@umich.edu>
#
# This file is part of Salus
# (see https://github.com/SymbioticLab/Salus).
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the Lic... | python | Apache-2.0 | 7b7f5e0651889f7c1242108f1fb6f5e78cbfefec | 2026-01-05T07:11:07.113380Z | false |
SymbioticLab/Salus | https://github.com/SymbioticLab/Salus/blob/7b7f5e0651889f7c1242108f1fb6f5e78cbfefec/scripts/parse_card270.py | scripts/parse_card270.py | #!/usr/bin/env python3
#
# Copyright 2019 Peifeng Yu <peifeng@umich.edu>
#
# This file is part of Salus
# (see https://github.com/SymbioticLab/Salus).
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the Lic... | python | Apache-2.0 | 7b7f5e0651889f7c1242108f1fb6f5e78cbfefec | 2026-01-05T07:11:07.113380Z | false |
SymbioticLab/Salus | https://github.com/SymbioticLab/Salus/blob/7b7f5e0651889f7c1242108f1fb6f5e78cbfefec/scripts/checks.py | scripts/checks.py | #
# Copyright 2019 Peifeng Yu <peifeng@umich.edu>
#
# This file is part of Salus
# (see https://github.com/SymbioticLab/Salus).
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http:... | python | Apache-2.0 | 7b7f5e0651889f7c1242108f1fb6f5e78cbfefec | 2026-01-05T07:11:07.113380Z | false |
SymbioticLab/Salus | https://github.com/SymbioticLab/Salus/blob/7b7f5e0651889f7c1242108f1fb6f5e78cbfefec/scripts/parse_card259.py | scripts/parse_card259.py | #!/usr/bin/env python3
#
# Copyright 2019 Peifeng Yu <peifeng@umich.edu>
#
# This file is part of Salus
# (see https://github.com/SymbioticLab/Salus).
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the L... | python | Apache-2.0 | 7b7f5e0651889f7c1242108f1fb6f5e78cbfefec | 2026-01-05T07:11:07.113380Z | false |
SymbioticLab/Salus | https://github.com/SymbioticLab/Salus/blob/7b7f5e0651889f7c1242108f1fb6f5e78cbfefec/scripts/simulate_tf.py | scripts/simulate_tf.py | #
# Copyright 2019 Peifeng Yu <peifeng@umich.edu>
#
# This file is part of Salus
# (see https://github.com/SymbioticLab/Salus).
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http:... | python | Apache-2.0 | 7b7f5e0651889f7c1242108f1fb6f5e78cbfefec | 2026-01-05T07:11:07.113380Z | false |
SymbioticLab/Salus | https://github.com/SymbioticLab/Salus/blob/7b7f5e0651889f7c1242108f1fb6f5e78cbfefec/scripts/memop.py | scripts/memop.py | #!/usr/bin/env python3
#
# Copyright 2019 Peifeng Yu <peifeng@umich.edu>
#
# This file is part of Salus
# (see https://github.com/SymbioticLab/Salus).
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the L... | python | Apache-2.0 | 7b7f5e0651889f7c1242108f1fb6f5e78cbfefec | 2026-01-05T07:11:07.113380Z | false |
SymbioticLab/Salus | https://github.com/SymbioticLab/Salus/blob/7b7f5e0651889f7c1242108f1fb6f5e78cbfefec/scripts/memory.py | scripts/memory.py | #!/usr/bin/env python3
#
# Copyright 2019 Peifeng Yu <peifeng@umich.edu>
#
# This file is part of Salus
# (see https://github.com/SymbioticLab/Salus).
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the L... | python | Apache-2.0 | 7b7f5e0651889f7c1242108f1fb6f5e78cbfefec | 2026-01-05T07:11:07.113380Z | false |
SymbioticLab/Salus | https://github.com/SymbioticLab/Salus/blob/7b7f5e0651889f7c1242108f1fb6f5e78cbfefec/scripts/parse_card274.py | scripts/parse_card274.py | #!/usr/bin/env python3
#
# Copyright 2019 Peifeng Yu <peifeng@umich.edu>
#
# This file is part of Salus
# (see https://github.com/SymbioticLab/Salus).
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the Lic... | python | Apache-2.0 | 7b7f5e0651889f7c1242108f1fb6f5e78cbfefec | 2026-01-05T07:11:07.113380Z | false |
SymbioticLab/Salus | https://github.com/SymbioticLab/Salus/blob/7b7f5e0651889f7c1242108f1fb6f5e78cbfefec/scripts/optracing.py | scripts/optracing.py | #
# Copyright 2019 Peifeng Yu <peifeng@umich.edu>
#
# This file is part of Salus
# (see https://github.com/SymbioticLab/Salus).
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http:... | python | Apache-2.0 | 7b7f5e0651889f7c1242108f1fb6f5e78cbfefec | 2026-01-05T07:11:07.113380Z | false |
SymbioticLab/Salus | https://github.com/SymbioticLab/Salus/blob/7b7f5e0651889f7c1242108f1fb6f5e78cbfefec/scripts/parse_card249.py | scripts/parse_card249.py | #!/usr/bin/env python3
#
# Copyright 2019 Peifeng Yu <peifeng@umich.edu>
#
# This file is part of Salus
# (see https://github.com/SymbioticLab/Salus).
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the L... | python | Apache-2.0 | 7b7f5e0651889f7c1242108f1fb6f5e78cbfefec | 2026-01-05T07:11:07.113380Z | false |
SymbioticLab/Salus | https://github.com/SymbioticLab/Salus/blob/7b7f5e0651889f7c1242108f1fb6f5e78cbfefec/scripts/parse_card251.py | scripts/parse_card251.py | #!/usr/bin/env python3
#
# Copyright 2019 Peifeng Yu <peifeng@umich.edu>
#
# This file is part of Salus
# (see https://github.com/SymbioticLab/Salus).
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the L... | python | Apache-2.0 | 7b7f5e0651889f7c1242108f1fb6f5e78cbfefec | 2026-01-05T07:11:07.113380Z | false |
SymbioticLab/Salus | https://github.com/SymbioticLab/Salus/blob/7b7f5e0651889f7c1242108f1fb6f5e78cbfefec/scripts/prepare_paper.py | scripts/prepare_paper.py | #! /bin/env python
#
# Copyright 2019 Peifeng Yu <peifeng@umich.edu>
#
# This file is part of Salus
# (see https://github.com/SymbioticLab/Salus).
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the Licen... | python | Apache-2.0 | 7b7f5e0651889f7c1242108f1fb6f5e78cbfefec | 2026-01-05T07:11:07.113380Z | false |
SymbioticLab/Salus | https://github.com/SymbioticLab/Salus/blob/7b7f5e0651889f7c1242108f1fb6f5e78cbfefec/scripts/plotutils.py | scripts/plotutils.py | #
# Copyright 2019 Peifeng Yu <peifeng@umich.edu>
#
# This file is part of Salus
# (see https://github.com/SymbioticLab/Salus).
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://w... | python | Apache-2.0 | 7b7f5e0651889f7c1242108f1fb6f5e78cbfefec | 2026-01-05T07:11:07.113380Z | false |
SymbioticLab/Salus | https://github.com/SymbioticLab/Salus/blob/7b7f5e0651889f7c1242108f1fb6f5e78cbfefec/scripts/simulate.py | scripts/simulate.py | #
# Copyright 2019 Peifeng Yu <peifeng@umich.edu>
#
# This file is part of Salus
# (see https://github.com/SymbioticLab/Salus).
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http:... | python | Apache-2.0 | 7b7f5e0651889f7c1242108f1fb6f5e78cbfefec | 2026-01-05T07:11:07.113380Z | false |
SymbioticLab/Salus | https://github.com/SymbioticLab/Salus/blob/7b7f5e0651889f7c1242108f1fb6f5e78cbfefec/scripts/parse_card250.py | scripts/parse_card250.py | #!/usr/bin/env python3
#
# Copyright 2019 Peifeng Yu <peifeng@umich.edu>
#
# This file is part of Salus
# (see https://github.com/SymbioticLab/Salus).
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the Lic... | python | Apache-2.0 | 7b7f5e0651889f7c1242108f1fb6f5e78cbfefec | 2026-01-05T07:11:07.113380Z | false |
SymbioticLab/Salus | https://github.com/SymbioticLab/Salus/blob/7b7f5e0651889f7c1242108f1fb6f5e78cbfefec/scripts/parse_card252.py | scripts/parse_card252.py | #!/usr/bin/env python3
#
# Copyright 2019 Peifeng Yu <peifeng@umich.edu>
#
# This file is part of Salus
# (see https://github.com/SymbioticLab/Salus).
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the L... | python | Apache-2.0 | 7b7f5e0651889f7c1242108f1fb6f5e78cbfefec | 2026-01-05T07:11:07.113380Z | false |
SymbioticLab/Salus | https://github.com/SymbioticLab/Salus/blob/7b7f5e0651889f7c1242108f1fb6f5e78cbfefec/scripts/memmap.py | scripts/memmap.py | #!/usr/bin/env python3
#
# Copyright 2019 Peifeng Yu <peifeng@umich.edu>
#
# This file is part of Salus
# (see https://github.com/SymbioticLab/Salus).
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the L... | python | Apache-2.0 | 7b7f5e0651889f7c1242108f1fb6f5e78cbfefec | 2026-01-05T07:11:07.113380Z | false |
SymbioticLab/Salus | https://github.com/SymbioticLab/Salus/blob/7b7f5e0651889f7c1242108f1fb6f5e78cbfefec/scripts/parse_log.py | scripts/parse_log.py | #
# Copyright 2019 Peifeng Yu <peifeng@umich.edu>
#
# This file is part of Salus
# (see https://github.com/SymbioticLab/Salus).
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http:... | python | Apache-2.0 | 7b7f5e0651889f7c1242108f1fb6f5e78cbfefec | 2026-01-05T07:11:07.113380Z | true |
SymbioticLab/Salus | https://github.com/SymbioticLab/Salus/blob/7b7f5e0651889f7c1242108f1fb6f5e78cbfefec/scripts/parse_card275.py | scripts/parse_card275.py | #!/usr/bin/env python3
#
# Copyright 2019 Peifeng Yu <peifeng@umich.edu>
#
# This file is part of Salus
# (see https://github.com/SymbioticLab/Salus).
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the Lic... | python | Apache-2.0 | 7b7f5e0651889f7c1242108f1fb6f5e78cbfefec | 2026-01-05T07:11:07.113380Z | false |
SymbioticLab/Salus | https://github.com/SymbioticLab/Salus/blob/7b7f5e0651889f7c1242108f1fb6f5e78cbfefec/scripts/parse_card271.py | scripts/parse_card271.py | #!/usr/bin/env python3
#
# Copyright 2019 Peifeng Yu <peifeng@umich.edu>
#
# This file is part of Salus
# (see https://github.com/SymbioticLab/Salus).
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the Lic... | python | Apache-2.0 | 7b7f5e0651889f7c1242108f1fb6f5e78cbfefec | 2026-01-05T07:11:07.113380Z | false |
SymbioticLab/Salus | https://github.com/SymbioticLab/Salus/blob/7b7f5e0651889f7c1242108f1fb6f5e78cbfefec/scripts/parse_exp17.py | scripts/parse_exp17.py | #!/usr/bin/env python3
#
# Copyright 2019 Peifeng Yu <peifeng@umich.edu>
#
# This file is part of Salus
# (see https://github.com/SymbioticLab/Salus).
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the Lic... | python | Apache-2.0 | 7b7f5e0651889f7c1242108f1fb6f5e78cbfefec | 2026-01-05T07:11:07.113380Z | false |
SymbioticLab/Salus | https://github.com/SymbioticLab/Salus/blob/7b7f5e0651889f7c1242108f1fb6f5e78cbfefec/scripts/parse_perf.py | scripts/parse_perf.py | #
# Copyright 2019 Peifeng Yu <peifeng@umich.edu>
#
# This file is part of Salus
# (see https://github.com/SymbioticLab/Salus).
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http:... | python | Apache-2.0 | 7b7f5e0651889f7c1242108f1fb6f5e78cbfefec | 2026-01-05T07:11:07.113380Z | false |
SymbioticLab/Salus | https://github.com/SymbioticLab/Salus/blob/7b7f5e0651889f7c1242108f1fb6f5e78cbfefec/scripts/parse_card235.py | scripts/parse_card235.py | #!/usr/bin/env python3
#
# Copyright 2019 Peifeng Yu <peifeng@umich.edu>
#
# This file is part of Salus
# (see https://github.com/SymbioticLab/Salus).
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the L... | python | Apache-2.0 | 7b7f5e0651889f7c1242108f1fb6f5e78cbfefec | 2026-01-05T07:11:07.113380Z | false |
SymbioticLab/Salus | https://github.com/SymbioticLab/Salus/blob/7b7f5e0651889f7c1242108f1fb6f5e78cbfefec/scripts/parse_run5.py | scripts/parse_run5.py | #!/usr/bin/env python3
#
# Copyright 2019 Peifeng Yu <peifeng@umich.edu>
#
# This file is part of Salus
# (see https://github.com/SymbioticLab/Salus).
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the L... | python | Apache-2.0 | 7b7f5e0651889f7c1242108f1fb6f5e78cbfefec | 2026-01-05T07:11:07.113380Z | false |
SymbioticLab/Salus | https://github.com/SymbioticLab/Salus/blob/7b7f5e0651889f7c1242108f1fb6f5e78cbfefec/scripts/parse_card260.py | scripts/parse_card260.py | #!/usr/bin/env python3
#
# Copyright 2019 Peifeng Yu <peifeng@umich.edu>
#
# This file is part of Salus
# (see https://github.com/SymbioticLab/Salus).
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the Lic... | python | Apache-2.0 | 7b7f5e0651889f7c1242108f1fb6f5e78cbfefec | 2026-01-05T07:11:07.113380Z | false |
SymbioticLab/Salus | https://github.com/SymbioticLab/Salus/blob/7b7f5e0651889f7c1242108f1fb6f5e78cbfefec/scripts/parse_card236.py | scripts/parse_card236.py | #!/usr/bin/env python3
#
# Copyright 2019 Peifeng Yu <peifeng@umich.edu>
#
# This file is part of Salus
# (see https://github.com/SymbioticLab/Salus).
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the L... | python | Apache-2.0 | 7b7f5e0651889f7c1242108f1fb6f5e78cbfefec | 2026-01-05T07:11:07.113380Z | false |
SymbioticLab/Salus | https://github.com/SymbioticLab/Salus/blob/7b7f5e0651889f7c1242108f1fb6f5e78cbfefec/scripts/parse_exp19.py | scripts/parse_exp19.py | #!/usr/bin/env python3
#
# Copyright 2019 Peifeng Yu <peifeng@umich.edu>
#
# This file is part of Salus
# (see https://github.com/SymbioticLab/Salus).
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the L... | python | Apache-2.0 | 7b7f5e0651889f7c1242108f1fb6f5e78cbfefec | 2026-01-05T07:11:07.113380Z | false |
SymbioticLab/Salus | https://github.com/SymbioticLab/Salus/blob/7b7f5e0651889f7c1242108f1fb6f5e78cbfefec/scripts/parse_pytorch.py | scripts/parse_pytorch.py | #!/usr/bin/env python3
#
# Copyright 2019 Peifeng Yu <peifeng@umich.edu>
#
# This file is part of Salus
# (see https://github.com/SymbioticLab/Salus).
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the Lic... | python | Apache-2.0 | 7b7f5e0651889f7c1242108f1fb6f5e78cbfefec | 2026-01-05T07:11:07.113380Z | false |
SymbioticLab/Salus | https://github.com/SymbioticLab/Salus/blob/7b7f5e0651889f7c1242108f1fb6f5e78cbfefec/scripts/cleanup_jct.py | scripts/cleanup_jct.py | #! /bin/env python
#
# Copyright 2019 Peifeng Yu <peifeng@umich.edu>
#
# This file is part of Salus
# (see https://github.com/SymbioticLab/Salus).
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the Licen... | python | Apache-2.0 | 7b7f5e0651889f7c1242108f1fb6f5e78cbfefec | 2026-01-05T07:11:07.113380Z | false |
SymbioticLab/Salus | https://github.com/SymbioticLab/Salus/blob/7b7f5e0651889f7c1242108f1fb6f5e78cbfefec/scripts/parse_card272.py | scripts/parse_card272.py | #!/usr/bin/env python3
#
# Copyright 2019 Peifeng Yu <peifeng@umich.edu>
#
# This file is part of Salus
# (see https://github.com/SymbioticLab/Salus).
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the Lic... | python | Apache-2.0 | 7b7f5e0651889f7c1242108f1fb6f5e78cbfefec | 2026-01-05T07:11:07.113380Z | false |
SymbioticLab/Salus | https://github.com/SymbioticLab/Salus/blob/7b7f5e0651889f7c1242108f1fb6f5e78cbfefec/scripts/compmem.py | scripts/compmem.py | #!/usr/bin/env python3
#
# Copyright 2019 Peifeng Yu <peifeng@umich.edu>
#
# This file is part of Salus
# (see https://github.com/SymbioticLab/Salus).
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the Lic... | python | Apache-2.0 | 7b7f5e0651889f7c1242108f1fb6f5e78cbfefec | 2026-01-05T07:11:07.113380Z | false |
SymbioticLab/Salus | https://github.com/SymbioticLab/Salus/blob/7b7f5e0651889f7c1242108f1fb6f5e78cbfefec/scripts/parse_exp3.py | scripts/parse_exp3.py | #!/usr/bin/env python3
#
# Copyright 2019 Peifeng Yu <peifeng@umich.edu>
#
# This file is part of Salus
# (see https://github.com/SymbioticLab/Salus).
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the L... | python | Apache-2.0 | 7b7f5e0651889f7c1242108f1fb6f5e78cbfefec | 2026-01-05T07:11:07.113380Z | false |
SymbioticLab/Salus | https://github.com/SymbioticLab/Salus/blob/7b7f5e0651889f7c1242108f1fb6f5e78cbfefec/scripts/nvvpreader/nvvpreader.py | scripts/nvvpreader/nvvpreader.py | #
# Copyright 2019 Peifeng Yu <peifeng@umich.edu>
#
# This file is part of Salus
# (see https://github.com/SymbioticLab/Salus).
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http:... | python | Apache-2.0 | 7b7f5e0651889f7c1242108f1fb6f5e78cbfefec | 2026-01-05T07:11:07.113380Z | false |
SymbioticLab/Salus | https://github.com/SymbioticLab/Salus/blob/7b7f5e0651889f7c1242108f1fb6f5e78cbfefec/scripts/nvvpreader/__init__.py | scripts/nvvpreader/__init__.py | #
# Copyright 2019 Peifeng Yu <peifeng@umich.edu>
#
# This file is part of Salus
# (see https://github.com/SymbioticLab/Salus).
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http:... | python | Apache-2.0 | 7b7f5e0651889f7c1242108f1fb6f5e78cbfefec | 2026-01-05T07:11:07.113380Z | false |
SymbioticLab/Salus | https://github.com/SymbioticLab/Salus/blob/7b7f5e0651889f7c1242108f1fb6f5e78cbfefec/tasks/__init__.py | tasks/__init__.py | from __future__ import print_function, absolute_import, division
from invoke import task
@task
def dev_docker_build(ctx):
"""Build development image"""
ctx.run('docker build -t salus-dev .', env={'DOCKER_BUILDKIT': '1'})
@task(pre=[dev_docker_build])
def dev(ctx):
"""Bring up the dev docker"""
ctx.... | python | Apache-2.0 | 7b7f5e0651889f7c1242108f1fb6f5e78cbfefec | 2026-01-05T07:11:07.113380Z | false |
SymbioticLab/Salus | https://github.com/SymbioticLab/Salus/blob/7b7f5e0651889f7c1242108f1fb6f5e78cbfefec/benchmarks/__init__.py | benchmarks/__init__.py | #
# Copyright 2019 Peifeng Yu <peifeng@umich.edu>
#
# This file is part of Salus
# (see https://github.com/SymbioticLab/Salus).
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http:... | python | Apache-2.0 | 7b7f5e0651889f7c1242108f1fb6f5e78cbfefec | 2026-01-05T07:11:07.113380Z | false |
SymbioticLab/Salus | https://github.com/SymbioticLab/Salus/blob/7b7f5e0651889f7c1242108f1fb6f5e78cbfefec/benchmarks/exps/smtracing.py | benchmarks/exps/smtracing.py | # -*- coding: future_fstrings -*-
#
# Copyright 2019 Peifeng Yu <peifeng@umich.edu>
#
# This file is part of Salus
# (see https://github.com/SymbioticLab/Salus).
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a co... | python | Apache-2.0 | 7b7f5e0651889f7c1242108f1fb6f5e78cbfefec | 2026-01-05T07:11:07.113380Z | false |
SymbioticLab/Salus | https://github.com/SymbioticLab/Salus/blob/7b7f5e0651889f7c1242108f1fb6f5e78cbfefec/benchmarks/exps/bs_lat_tput.py | benchmarks/exps/bs_lat_tput.py | # -*- coding: future_fstrings -*-
#
# Copyright 2019 Peifeng Yu <peifeng@umich.edu>
#
# This file is part of Salus
# (see https://github.com/SymbioticLab/Salus).
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy... | python | Apache-2.0 | 7b7f5e0651889f7c1242108f1fb6f5e78cbfefec | 2026-01-05T07:11:07.113380Z | false |
SymbioticLab/Salus | https://github.com/SymbioticLab/Salus/blob/7b7f5e0651889f7c1242108f1fb6f5e78cbfefec/benchmarks/exps/__init__.py | benchmarks/exps/__init__.py | # -*- coding: future_fstrings -*-
#
# Copyright 2019 Peifeng Yu <peifeng@umich.edu>
#
# This file is part of Salus
# (see https://github.com/SymbioticLab/Salus).
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a co... | python | Apache-2.0 | 7b7f5e0651889f7c1242108f1fb6f5e78cbfefec | 2026-01-05T07:11:07.113380Z | false |
SymbioticLab/Salus | https://github.com/SymbioticLab/Salus/blob/7b7f5e0651889f7c1242108f1fb6f5e78cbfefec/benchmarks/exps/card304.py | benchmarks/exps/card304.py | # -*- coding: future_fstrings -*-
#
# Copyright 2019 Peifeng Yu <peifeng@umich.edu>
#
# This file is part of Salus
# (see https://github.com/SymbioticLab/Salus).
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a co... | python | Apache-2.0 | 7b7f5e0651889f7c1242108f1fb6f5e78cbfefec | 2026-01-05T07:11:07.113380Z | false |
SymbioticLab/Salus | https://github.com/SymbioticLab/Salus/blob/7b7f5e0651889f7c1242108f1fb6f5e78cbfefec/benchmarks/exps/tune_pending.py | benchmarks/exps/tune_pending.py | # -*- coding: future_fstrings -*-
#
# Copyright 2019 Peifeng Yu <peifeng@umich.edu>
#
# This file is part of Salus
# (see https://github.com/SymbioticLab/Salus).
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a co... | python | Apache-2.0 | 7b7f5e0651889f7c1242108f1fb6f5e78cbfefec | 2026-01-05T07:11:07.113380Z | false |
SymbioticLab/Salus | https://github.com/SymbioticLab/Salus/blob/7b7f5e0651889f7c1242108f1fb6f5e78cbfefec/benchmarks/exps/card309.py | benchmarks/exps/card309.py | # -*- coding: future_fstrings -*-
#
# Copyright 2019 Peifeng Yu <peifeng@umich.edu>
#
# This file is part of Salus
# (see https://github.com/SymbioticLab/Salus).
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a co... | python | Apache-2.0 | 7b7f5e0651889f7c1242108f1fb6f5e78cbfefec | 2026-01-05T07:11:07.113380Z | false |
SymbioticLab/Salus | https://github.com/SymbioticLab/Salus/blob/7b7f5e0651889f7c1242108f1fb6f5e78cbfefec/benchmarks/exps/card308.py | benchmarks/exps/card308.py | # -*- coding: future_fstrings -*-
#
# Copyright 2019 Peifeng Yu <peifeng@umich.edu>
#
# This file is part of Salus
# (see https://github.com/SymbioticLab/Salus).
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy... | python | Apache-2.0 | 7b7f5e0651889f7c1242108f1fb6f5e78cbfefec | 2026-01-05T07:11:07.113380Z | false |
SymbioticLab/Salus | https://github.com/SymbioticLab/Salus/blob/7b7f5e0651889f7c1242108f1fb6f5e78cbfefec/benchmarks/exps/old/paral2.py | benchmarks/exps/old/paral2.py | # -*- coding: future_fstrings -*-
#
# Copyright 2019 Peifeng Yu <peifeng@umich.edu>
#
# This file is part of Salus
# (see https://github.com/SymbioticLab/Salus).
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a co... | python | Apache-2.0 | 7b7f5e0651889f7c1242108f1fb6f5e78cbfefec | 2026-01-05T07:11:07.113380Z | false |
SymbioticLab/Salus | https://github.com/SymbioticLab/Salus/blob/7b7f5e0651889f7c1242108f1fb6f5e78cbfefec/benchmarks/exps/old/card252.py | benchmarks/exps/old/card252.py | # -*- coding: future_fstrings -*-
#
# Copyright 2019 Peifeng Yu <peifeng@umich.edu>
#
# This file is part of Salus
# (see https://github.com/SymbioticLab/Salus).
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a co... | python | Apache-2.0 | 7b7f5e0651889f7c1242108f1fb6f5e78cbfefec | 2026-01-05T07:11:07.113380Z | false |
SymbioticLab/Salus | https://github.com/SymbioticLab/Salus/blob/7b7f5e0651889f7c1242108f1fb6f5e78cbfefec/benchmarks/exps/old/exp19.py | benchmarks/exps/old/exp19.py | # -*- coding: future_fstrings -*-
#
# Copyright 2019 Peifeng Yu <peifeng@umich.edu>
#
# This file is part of Salus
# (see https://github.com/SymbioticLab/Salus).
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a co... | python | Apache-2.0 | 7b7f5e0651889f7c1242108f1fb6f5e78cbfefec | 2026-01-05T07:11:07.113380Z | false |
SymbioticLab/Salus | https://github.com/SymbioticLab/Salus/blob/7b7f5e0651889f7c1242108f1fb6f5e78cbfefec/benchmarks/exps/old/gperf.py | benchmarks/exps/old/gperf.py | # -*- coding: future_fstrings -*-
#
# Copyright 2019 Peifeng Yu <peifeng@umich.edu>
#
# This file is part of Salus
# (see https://github.com/SymbioticLab/Salus).
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a co... | python | Apache-2.0 | 7b7f5e0651889f7c1242108f1fb6f5e78cbfefec | 2026-01-05T07:11:07.113380Z | false |
SymbioticLab/Salus | https://github.com/SymbioticLab/Salus/blob/7b7f5e0651889f7c1242108f1fb6f5e78cbfefec/benchmarks/exps/old/card194.py | benchmarks/exps/old/card194.py | # -*- coding: future_fstrings -*-
#
# Copyright 2019 Peifeng Yu <peifeng@umich.edu>
#
# This file is part of Salus
# (see https://github.com/SymbioticLab/Salus).
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a co... | python | Apache-2.0 | 7b7f5e0651889f7c1242108f1fb6f5e78cbfefec | 2026-01-05T07:11:07.113380Z | false |
SymbioticLab/Salus | https://github.com/SymbioticLab/Salus/blob/7b7f5e0651889f7c1242108f1fb6f5e78cbfefec/benchmarks/exps/old/card218.py | benchmarks/exps/old/card218.py | # -*- coding: future_fstrings -*-
#
# Copyright 2019 Peifeng Yu <peifeng@umich.edu>
#
# This file is part of Salus
# (see https://github.com/SymbioticLab/Salus).
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a co... | python | Apache-2.0 | 7b7f5e0651889f7c1242108f1fb6f5e78cbfefec | 2026-01-05T07:11:07.113380Z | false |
SymbioticLab/Salus | https://github.com/SymbioticLab/Salus/blob/7b7f5e0651889f7c1242108f1fb6f5e78cbfefec/benchmarks/exps/old/card259.py | benchmarks/exps/old/card259.py | # -*- coding: future_fstrings -*-
#
# Copyright 2019 Peifeng Yu <peifeng@umich.edu>
#
# This file is part of Salus
# (see https://github.com/SymbioticLab/Salus).
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a co... | python | Apache-2.0 | 7b7f5e0651889f7c1242108f1fb6f5e78cbfefec | 2026-01-05T07:11:07.113380Z | false |
SymbioticLab/Salus | https://github.com/SymbioticLab/Salus/blob/7b7f5e0651889f7c1242108f1fb6f5e78cbfefec/benchmarks/exps/old/save_train_dir.py | benchmarks/exps/old/save_train_dir.py | # -*- coding: future_fstrings -*-
#
# Copyright 2019 Peifeng Yu <peifeng@umich.edu>
#
# This file is part of Salus
# (see https://github.com/SymbioticLab/Salus).
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a co... | python | Apache-2.0 | 7b7f5e0651889f7c1242108f1fb6f5e78cbfefec | 2026-01-05T07:11:07.113380Z | false |
SymbioticLab/Salus | https://github.com/SymbioticLab/Salus/blob/7b7f5e0651889f7c1242108f1fb6f5e78cbfefec/benchmarks/exps/old/card275.py | benchmarks/exps/old/card275.py | # -*- coding: future_fstrings -*-
#
# Copyright 2019 Peifeng Yu <peifeng@umich.edu>
#
# This file is part of Salus
# (see https://github.com/SymbioticLab/Salus).
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a co... | python | Apache-2.0 | 7b7f5e0651889f7c1242108f1fb6f5e78cbfefec | 2026-01-05T07:11:07.113380Z | false |
SymbioticLab/Salus | https://github.com/SymbioticLab/Salus/blob/7b7f5e0651889f7c1242108f1fb6f5e78cbfefec/benchmarks/exps/old/card212.py | benchmarks/exps/old/card212.py | # -*- coding: future_fstrings -*-
#
# Copyright 2019 Peifeng Yu <peifeng@umich.edu>
#
# This file is part of Salus
# (see https://github.com/SymbioticLab/Salus).
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a co... | python | Apache-2.0 | 7b7f5e0651889f7c1242108f1fb6f5e78cbfefec | 2026-01-05T07:11:07.113380Z | false |
SymbioticLab/Salus | https://github.com/SymbioticLab/Salus/blob/7b7f5e0651889f7c1242108f1fb6f5e78cbfefec/benchmarks/exps/old/card210.py | benchmarks/exps/old/card210.py | # -*- coding: future_fstrings -*-
#
# Copyright 2019 Peifeng Yu <peifeng@umich.edu>
#
# This file is part of Salus
# (see https://github.com/SymbioticLab/Salus).
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a co... | python | Apache-2.0 | 7b7f5e0651889f7c1242108f1fb6f5e78cbfefec | 2026-01-05T07:11:07.113380Z | false |
SymbioticLab/Salus | https://github.com/SymbioticLab/Salus/blob/7b7f5e0651889f7c1242108f1fb6f5e78cbfefec/benchmarks/exps/old/card249.py | benchmarks/exps/old/card249.py | # -*- coding: future_fstrings -*-
#
# Copyright 2019 Peifeng Yu <peifeng@umich.edu>
#
# This file is part of Salus
# (see https://github.com/SymbioticLab/Salus).
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a co... | python | Apache-2.0 | 7b7f5e0651889f7c1242108f1fb6f5e78cbfefec | 2026-01-05T07:11:07.113380Z | false |
SymbioticLab/Salus | https://github.com/SymbioticLab/Salus/blob/7b7f5e0651889f7c1242108f1fb6f5e78cbfefec/benchmarks/exps/old/card189.py | benchmarks/exps/old/card189.py | # -*- coding: future_fstrings -*-
#
# Copyright 2019 Peifeng Yu <peifeng@umich.edu>
#
# This file is part of Salus
# (see https://github.com/SymbioticLab/Salus).
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a co... | python | Apache-2.0 | 7b7f5e0651889f7c1242108f1fb6f5e78cbfefec | 2026-01-05T07:11:07.113380Z | false |
SymbioticLab/Salus | https://github.com/SymbioticLab/Salus/blob/7b7f5e0651889f7c1242108f1fb6f5e78cbfefec/benchmarks/exps/old/card240.py | benchmarks/exps/old/card240.py | # -*- coding: future_fstrings -*-
#
# Copyright 2019 Peifeng Yu <peifeng@umich.edu>
#
# This file is part of Salus
# (see https://github.com/SymbioticLab/Salus).
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a co... | python | Apache-2.0 | 7b7f5e0651889f7c1242108f1fb6f5e78cbfefec | 2026-01-05T07:11:07.113380Z | false |
SymbioticLab/Salus | https://github.com/SymbioticLab/Salus/blob/7b7f5e0651889f7c1242108f1fb6f5e78cbfefec/benchmarks/exps/old/card236.py | benchmarks/exps/old/card236.py | # -*- coding: future_fstrings -*-
#
# Copyright 2019 Peifeng Yu <peifeng@umich.edu>
#
# This file is part of Salus
# (see https://github.com/SymbioticLab/Salus).
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a co... | python | Apache-2.0 | 7b7f5e0651889f7c1242108f1fb6f5e78cbfefec | 2026-01-05T07:11:07.113380Z | false |
SymbioticLab/Salus | https://github.com/SymbioticLab/Salus/blob/7b7f5e0651889f7c1242108f1fb6f5e78cbfefec/benchmarks/exps/old/exp18.py | benchmarks/exps/old/exp18.py | # -*- coding: future_fstrings -*-
#
# Copyright 2019 Peifeng Yu <peifeng@umich.edu>
#
# This file is part of Salus
# (see https://github.com/SymbioticLab/Salus).
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a co... | python | Apache-2.0 | 7b7f5e0651889f7c1242108f1fb6f5e78cbfefec | 2026-01-05T07:11:07.113380Z | false |
SymbioticLab/Salus | https://github.com/SymbioticLab/Salus/blob/7b7f5e0651889f7c1242108f1fb6f5e78cbfefec/benchmarks/exps/old/exp10.py | benchmarks/exps/old/exp10.py | # -*- coding: future_fstrings -*-
#
# Copyright 2019 Peifeng Yu <peifeng@umich.edu>
#
# This file is part of Salus
# (see https://github.com/SymbioticLab/Salus).
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a co... | python | Apache-2.0 | 7b7f5e0651889f7c1242108f1fb6f5e78cbfefec | 2026-01-05T07:11:07.113380Z | false |
SymbioticLab/Salus | https://github.com/SymbioticLab/Salus/blob/7b7f5e0651889f7c1242108f1fb6f5e78cbfefec/benchmarks/exps/old/one.py | benchmarks/exps/old/one.py | # -*- coding: future_fstrings -*-
#
# Copyright 2019 Peifeng Yu <peifeng@umich.edu>
#
# This file is part of Salus
# (see https://github.com/SymbioticLab/Salus).
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a co... | python | Apache-2.0 | 7b7f5e0651889f7c1242108f1fb6f5e78cbfefec | 2026-01-05T07:11:07.113380Z | false |
SymbioticLab/Salus | https://github.com/SymbioticLab/Salus/blob/7b7f5e0651889f7c1242108f1fb6f5e78cbfefec/benchmarks/exps/old/serialmany.py | benchmarks/exps/old/serialmany.py | # -*- coding: future_fstrings -*-
#
# Copyright 2019 Peifeng Yu <peifeng@umich.edu>
#
# This file is part of Salus
# (see https://github.com/SymbioticLab/Salus).
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a co... | python | Apache-2.0 | 7b7f5e0651889f7c1242108f1fb6f5e78cbfefec | 2026-01-05T07:11:07.113380Z | false |
SymbioticLab/Salus | https://github.com/SymbioticLab/Salus/blob/7b7f5e0651889f7c1242108f1fb6f5e78cbfefec/benchmarks/exps/old/exp11.py | benchmarks/exps/old/exp11.py | # -*- coding: future_fstrings -*-
#
# Copyright 2019 Peifeng Yu <peifeng@umich.edu>
#
# This file is part of Salus
# (see https://github.com/SymbioticLab/Salus).
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a co... | python | Apache-2.0 | 7b7f5e0651889f7c1242108f1fb6f5e78cbfefec | 2026-01-05T07:11:07.113380Z | false |
SymbioticLab/Salus | https://github.com/SymbioticLab/Salus/blob/7b7f5e0651889f7c1242108f1fb6f5e78cbfefec/benchmarks/exps/old/exp13.py | benchmarks/exps/old/exp13.py | # -*- coding: future_fstrings -*-
#
# Copyright 2019 Peifeng Yu <peifeng@umich.edu>
#
# This file is part of Salus
# (see https://github.com/SymbioticLab/Salus).
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a co... | python | Apache-2.0 | 7b7f5e0651889f7c1242108f1fb6f5e78cbfefec | 2026-01-05T07:11:07.113380Z | false |
SymbioticLab/Salus | https://github.com/SymbioticLab/Salus/blob/7b7f5e0651889f7c1242108f1fb6f5e78cbfefec/benchmarks/exps/old/card195.py | benchmarks/exps/old/card195.py | # -*- coding: future_fstrings -*-
#
# Copyright 2019 Peifeng Yu <peifeng@umich.edu>
#
# This file is part of Salus
# (see https://github.com/SymbioticLab/Salus).
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a co... | python | Apache-2.0 | 7b7f5e0651889f7c1242108f1fb6f5e78cbfefec | 2026-01-05T07:11:07.113380Z | false |
SymbioticLab/Salus | https://github.com/SymbioticLab/Salus/blob/7b7f5e0651889f7c1242108f1fb6f5e78cbfefec/benchmarks/exps/old/fairnessjct.py | benchmarks/exps/old/fairnessjct.py | # -*- coding: future_fstrings -*-
#
# Copyright 2019 Peifeng Yu <peifeng@umich.edu>
#
# This file is part of Salus
# (see https://github.com/SymbioticLab/Salus).
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a co... | python | Apache-2.0 | 7b7f5e0651889f7c1242108f1fb6f5e78cbfefec | 2026-01-05T07:11:07.113380Z | false |
SymbioticLab/Salus | https://github.com/SymbioticLab/Salus/blob/7b7f5e0651889f7c1242108f1fb6f5e78cbfefec/benchmarks/exps/old/two.py | benchmarks/exps/old/two.py | # -*- coding: future_fstrings -*-
#
# Copyright 2019 Peifeng Yu <peifeng@umich.edu>
#
# This file is part of Salus
# (see https://github.com/SymbioticLab/Salus).
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a co... | python | Apache-2.0 | 7b7f5e0651889f7c1242108f1fb6f5e78cbfefec | 2026-01-05T07:11:07.113380Z | false |
SymbioticLab/Salus | https://github.com/SymbioticLab/Salus/blob/7b7f5e0651889f7c1242108f1fb6f5e78cbfefec/benchmarks/exps/old/memop.py | benchmarks/exps/old/memop.py | # -*- coding: future_fstrings -*-
#
# Copyright 2019 Peifeng Yu <peifeng@umich.edu>
#
# This file is part of Salus
# (see https://github.com/SymbioticLab/Salus).
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a co... | python | Apache-2.0 | 7b7f5e0651889f7c1242108f1fb6f5e78cbfefec | 2026-01-05T07:11:07.113380Z | false |
SymbioticLab/Salus | https://github.com/SymbioticLab/Salus/blob/7b7f5e0651889f7c1242108f1fb6f5e78cbfefec/benchmarks/exps/old/card271.py | benchmarks/exps/old/card271.py | # -*- coding: future_fstrings -*-
#
# Copyright 2019 Peifeng Yu <peifeng@umich.edu>
#
# This file is part of Salus
# (see https://github.com/SymbioticLab/Salus).
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a co... | python | Apache-2.0 | 7b7f5e0651889f7c1242108f1fb6f5e78cbfefec | 2026-01-05T07:11:07.113380Z | false |
SymbioticLab/Salus | https://github.com/SymbioticLab/Salus/blob/7b7f5e0651889f7c1242108f1fb6f5e78cbfefec/benchmarks/exps/old/optracing.py | benchmarks/exps/old/optracing.py | # -*- coding: future_fstrings -*-
#
# Copyright 2019 Peifeng Yu <peifeng@umich.edu>
#
# This file is part of Salus
# (see https://github.com/SymbioticLab/Salus).
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a co... | python | Apache-2.0 | 7b7f5e0651889f7c1242108f1fb6f5e78cbfefec | 2026-01-05T07:11:07.113380Z | false |
SymbioticLab/Salus | https://github.com/SymbioticLab/Salus/blob/7b7f5e0651889f7c1242108f1fb6f5e78cbfefec/benchmarks/exps/old/mem.py | benchmarks/exps/old/mem.py | # -*- coding: future_fstrings -*-
#
# Copyright 2019 Peifeng Yu <peifeng@umich.edu>
#
# This file is part of Salus
# (see https://github.com/SymbioticLab/Salus).
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a co... | python | Apache-2.0 | 7b7f5e0651889f7c1242108f1fb6f5e78cbfefec | 2026-01-05T07:11:07.113380Z | false |
SymbioticLab/Salus | https://github.com/SymbioticLab/Salus/blob/7b7f5e0651889f7c1242108f1fb6f5e78cbfefec/benchmarks/exps/old/exp9.py | benchmarks/exps/old/exp9.py | # -*- coding: future_fstrings -*-
#
# Copyright 2019 Peifeng Yu <peifeng@umich.edu>
#
# This file is part of Salus
# (see https://github.com/SymbioticLab/Salus).
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a co... | python | Apache-2.0 | 7b7f5e0651889f7c1242108f1fb6f5e78cbfefec | 2026-01-05T07:11:07.113380Z | false |
SymbioticLab/Salus | https://github.com/SymbioticLab/Salus/blob/7b7f5e0651889f7c1242108f1fb6f5e78cbfefec/benchmarks/exps/old/card207.py | benchmarks/exps/old/card207.py | # -*- coding: future_fstrings -*-
#
# Copyright 2019 Peifeng Yu <peifeng@umich.edu>
#
# This file is part of Salus
# (see https://github.com/SymbioticLab/Salus).
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a co... | python | Apache-2.0 | 7b7f5e0651889f7c1242108f1fb6f5e78cbfefec | 2026-01-05T07:11:07.113380Z | false |
SymbioticLab/Salus | https://github.com/SymbioticLab/Salus/blob/7b7f5e0651889f7c1242108f1fb6f5e78cbfefec/benchmarks/exps/old/exp3.py | benchmarks/exps/old/exp3.py | # -*- coding: future_fstrings -*-
#
# Copyright 2019 Peifeng Yu <peifeng@umich.edu>
#
# This file is part of Salus
# (see https://github.com/SymbioticLab/Salus).
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a co... | python | Apache-2.0 | 7b7f5e0651889f7c1242108f1fb6f5e78cbfefec | 2026-01-05T07:11:07.113380Z | false |
SymbioticLab/Salus | https://github.com/SymbioticLab/Salus/blob/7b7f5e0651889f7c1242108f1fb6f5e78cbfefec/benchmarks/exps/old/card270.py | benchmarks/exps/old/card270.py | # -*- coding: future_fstrings -*-
#
# Copyright 2019 Peifeng Yu <peifeng@umich.edu>
#
# This file is part of Salus
# (see https://github.com/SymbioticLab/Salus).
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a co... | python | Apache-2.0 | 7b7f5e0651889f7c1242108f1fb6f5e78cbfefec | 2026-01-05T07:11:07.113380Z | false |
SymbioticLab/Salus | https://github.com/SymbioticLab/Salus/blob/7b7f5e0651889f7c1242108f1fb6f5e78cbfefec/benchmarks/exps/old/card234.py | benchmarks/exps/old/card234.py | # -*- coding: future_fstrings -*-
#
# Copyright 2019 Peifeng Yu <peifeng@umich.edu>
#
# This file is part of Salus
# (see https://github.com/SymbioticLab/Salus).
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a co... | python | Apache-2.0 | 7b7f5e0651889f7c1242108f1fb6f5e78cbfefec | 2026-01-05T07:11:07.113380Z | false |
SymbioticLab/Salus | https://github.com/SymbioticLab/Salus/blob/7b7f5e0651889f7c1242108f1fb6f5e78cbfefec/benchmarks/exps/old/paraltf.py | benchmarks/exps/old/paraltf.py | # -*- coding: future_fstrings -*-
#
# Copyright 2019 Peifeng Yu <peifeng@umich.edu>
#
# This file is part of Salus
# (see https://github.com/SymbioticLab/Salus).
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a co... | python | Apache-2.0 | 7b7f5e0651889f7c1242108f1fb6f5e78cbfefec | 2026-01-05T07:11:07.113380Z | false |
SymbioticLab/Salus | https://github.com/SymbioticLab/Salus/blob/7b7f5e0651889f7c1242108f1fb6f5e78cbfefec/benchmarks/exps/old/card241.py | benchmarks/exps/old/card241.py | # -*- coding: future_fstrings -*-
#
# Copyright 2019 Peifeng Yu <peifeng@umich.edu>
#
# This file is part of Salus
# (see https://github.com/SymbioticLab/Salus).
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a co... | python | Apache-2.0 | 7b7f5e0651889f7c1242108f1fb6f5e78cbfefec | 2026-01-05T07:11:07.113380Z | false |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.