content
stringlengths 7
1.05M
|
|---|
class Error(Exception):
def __init__(self, basemessage="Unspecified Error", message=""):
self.basemessage = basemessage
self.message = message
super().__init__(basemessage, message)
class NotImplementedError(Error):
"""An error to indicate that the requested operation has not yet been implemented
"""
def __init__(self, message=""):
super().__init__("This feature has not yet been implemented.", message)
class ParseError(Error):
def __init__(self, basemessage='ParserError', message=''):
super().__init__(basemessage=basemessage, message=message)
|
"""Import, export, compare different project exports."""
__author__ = """Fabian Göttel"""
__email__ = "fabian.goettel@gmail.com"
__version__ = "0.3.0"
|
x,y=map(int,input().split())
if(x < y):
print('<')
elif(x > y):
print('>')
elif(x==y):
print('==')
|
def somar(num1, num2):
n1 = str(num1)
n2 = str(num2)
print(n1, n2)
opcao = int(input("""\nEscolha a conversão:
[1] Decimal > Binario
[2] Decimal > Octal
[3] Decimal > Hexadecimal
[4] Binario > Decimal
[5] Octal > Decimal
[6] Hexadecimal > Decimal
==========================
[7] Somar Binarios
[8] Subtrair Binarios
Opção: """))
if opcao == 1:
num1 = (input('Digite o numero que deseja converter: ')).upper()
num = int(num1)
numAnt = num
numConv = str(num % 2)
num = int(num/2)
while num > 0:
numConv = str(num % 2) + numConv
num = int(num/2)
print(f'O núnumero DECIMAL: {numAnt} convertido em BINARIO é: {numConv}')
elif opcao == 2:
num1 = (input('Digite o numero que deseja converter: ')).upper()
num = int(num1)
numAnt = num
numConv = str(num % 8)
num = int(num/8)
while num > 0:
numConv = str(num % 8) + numConv
num = int(num/8)
print(f'O núnumero DECIMAL: {numAnt} convertido em OCTAL é: {numConv}')
elif opcao == 3:
num1 = (input('Digite o numero que deseja converter: ')).upper()
num = int(num1)
numAnt = num
numConv = int(num % 16)
if numConv > 9:
a = 1
if numConv == 10:
numConv = 'A'
if numConv == 11:
numConv = 'B'
if numConv == 12:
numConv = 'C'
if numConv == 13:
numConv = 'D'
if numConv == 14:
numConv = 'E'
if numConv == 15:
numConv = 'F'
else:
numConv = str(num % 16)
num = int(num / 16)
while num > 0:
numAdd = int(num % 16)
if numAdd > 9:
a=1
if numAdd == 10:
numAdd = 'A'
if numAdd == 11:
numAdd = 'B'
if numAdd == 12:
numAdd = 'C'
if numAdd == 13:
numAdd = 'D'
if numAdd == 14:
numAdd = 'E'
if numAdd == 15:
numAdd = 'F'
else:
numAdd = str(num % 16)
#print(numAdd)
numConv = numAdd + numConv
num = int(num / 16)
print(f'O núnumero DECIMAL: {numAnt} convertido em HEXADECIMAL é: {numConv}')
elif opcao == 4:
num1 = (input('Digite o numero que deseja converter: ')).upper()
num = int(num1)
numAnt = num
n = str(num)
numConv = 0
pot = 0
for i in range(len(n)-1, -1, -1):
calc = 2 ** pot
pot = pot + 1
calc2 = int(n[i]) * calc
numConv = numConv + calc2
print(f'O núnumero BINARIO: {numAnt} convertido em DECIMAL é: {numConv}')
elif opcao == 5:
num1 = (input('Digite o numero que deseja converter: ')).upper()
num = int(num1)
numAnt = num
n = str(num)
numConv = 0
pot = 0
for i in range(len(n)-1, -1, -1):
calc = 8 ** pot
pot = pot + 1
calc2 = int(n[i]) * calc
numConv = numConv + calc2
print(f'O núnumero OCTAL: {numAnt} convertido em DECIMAL é: {numConv}')
elif opcao == 6:
num1 = str(input('Digite o numero que deseja converter: ')).upper()
num = str(num1)
numAnt = num
numConv = int(num, 16)
print(f'O núnumero HEXADECIMAL: {numAnt} convertido em DECIMAL é: {numConv}')
elif opcao == 7:
num1 = str(input("Informe o primeiro numero para ser somado: "))
num2 = str(input("Informe o segundo numero para ser somado: "))
r = ''
s = 0
resultado = ''
i = len(num1)-1
while i >=0:
if (num1[i] == '0' and num2[i] == '0'):
if (s == 0):
r = 0
s = 0
else:
r = 1
s = 0
if((num1[i] == '0' and num2[i] == '1') or (num1[i] == '1' and num2[i] == '0')):
if(i!=0):
if (s == 0):
r = 1
s = 0
else:
r = 0
s = 1
else:
if(s == 1):
r = 10
if(num1[i] == '1' and num2[i] == '1'):
if(s == 0):
if(i != 0):
r = 0
s = 1
else:
r = 10
elif(s == 1):
if(i == 0):
r = 11
else:
r = 1
resultado = str(r) + resultado
i = i-1
print(f'\nA soma do binario {num1} + {num2} = {resultado}')
num = int(resultado)
numAnt = num
n = str(num)
numConv = 0
pot = 0
for i in range(len(n) - 1, -1, -1):
calc = 2 ** pot
pot = pot + 1
calc2 = int(n[i]) * calc
numConv = numConv + calc2
print(f'O núnumero BINARIO: {numAnt} convertido em DECIMAL é: {numConv}')
elif opcao == 8:
num1 = str(input("Informe o primeiro numero para ser somado: "))
num2 = str(input("Informe o segundo numero para ser somado: "))
r = ''
s = 0
resultado = ''
iguala = '0'
compl1 = ''
compl2 = ''
somaCompl = '1'
conv = ''
res = 0
controle = len(num1)
conv1 = len(num2)
if(conv1 < controle):
num2 = iguala + num2
j = len(num2)-1
while j >=0:
if(num2[j] == '0'):
conv = 1
elif(num2[j] == '1'):
conv = 0
compl1 = str(conv) + compl1
j = j - 1
#complemento de 2
k = len(compl1)-1
l = k
while k >=0:
if (compl1[k] == '0' and somaCompl == '1'):
if(k == l):
r = 1
elif(k >= 0):
if (s == 0):
r = 0
else:
r = 1
s = 0
if (compl1[k] == '1' and somaCompl == '1'):
if (k == l):
r = 0
s = 1
elif (k >= 0):
if (s == 0):
r = 1
s = 0
else:
r = 0
s = 1
compl2 = str(r) + compl2
k = k - 1
# Soma:
i = len(num1)-1
while i >= 0:
if (num1[i] == '0' and compl2[i] == '0'):
if (s == 0):
r = 0
s = 0
else:
r = 1
s = 0
if ((num1[i] == '0' and compl2[i] == '1') or (num1[i] == '1' and compl2[i] == '0')):
if (i != 0):
if (s == 0):
r = 1
s = 0
else:
r = 0
s = 1
else:
if (s == 1):
r = 10
if (num1[i] == '1' and compl2[i] == '1'):
if (s == 0):
if (i != 0):
r = 0
s = 1
else:
r = 10
elif (s == 1):
if (i == 0):
r = 11
else:
r = 1
resultado = str(r) + resultado
i = i - 1
if(controle > l-1):
resultado = resultado[1:]
print(f'\nA soma do binario {num1} - {compl2} = {resultado}')
num = int(resultado)
numAnt = num
n = str(num)
numConv = 0
pot = 0
for i in range(len(n) - 1, -1, -1):
calc = 2 ** pot
pot = pot + 1
calc2 = int(n[i]) * calc
numConv = numConv + calc2
print(f'O núnumero BINARIO: {numAnt} convertido em DECIMAL é: {numConv}')
input('\nSeu programa foi finalizado.')
|
class Settings():
# APP SETTINGS
# ///////////////////////////////////////////////////////////////
ENABLE_CUSTOM_TITLE_BAR = False
MENU_WIDTH = 240
TIME_ANIMATION = 400
# BTNS LEFT AND RIGHT BOX COLORS
BTN_LEFT_BOX_COLOR = "background-color: rgb(44, 49, 58);"
BTN_RIGHT_BOX_COLOR = "background-color: #81A1C1;"
# MENU SELECTED STYLESHEET
MENU_SELECTED_STYLESHEET = """
border-left: 30px solid qlineargradient(spread:pad, x1:0.034, y1:0, x2:0.216, y2:0, stop:0.499 #4c78ad, stop:0.5 rgba(85, 170, 255, 0));
background-color: #3B4252;
"""
|
"""
Dicionários
OBS: Em algumas linguagens de programação, os dicionários Python são conhecidos
por mapas.
Dicionários são coleções do tipo chave/valor. (Mapeamento entre chave e valor)
#Tuplas
[0, 1, 2]
[1, 2, 3]
# Listas
(0, 1, 2)
(1, 2, 3)
Dicionários são representados por chaves {}.
print(type({}))
OBS: Sobre dicionários
- Chave e valor são separados por dois pontos 'chave:valor';
- Tanto chave quanto valor podem ser de qualquer tipo de dado;
- Podemos misturar tipos de dados;
# Criação de dicionários
# Forma1 (Mais comum)
paises = {'br': 'Brasil', 'eua': 'Estados Unidos', 'py': 'Paraguay'}
print(paises)
print(type(paises))
# Forma2 (Menos comum)
paises = dict(br='Brasil', eua='Estados Unidos', py='Paraguay')
print(paises)
print(type(paises))
# Acessando elementos
# Forma1 - Acessando via chave, da mesma forma que lista/tupla
print(paises['br'])
# print(paises['ru'])
# OBS: Caso tentamos fazer um acesso utilizando uma chave que não existe, teremos o erro KeyError
# Forma2 - Acessando via get (Recomendada)
print(paises.get('br'))
print(paises.get('ru'))
# Caso o get não encontre o objeto com a chave informada, será retornado o valor None e não será gerado KeyError
pais = paises.get('ru')
if pais:
print(f'Encontrei o país {pais}')
else:
print('Não encontrei o país')
# Podemos definir um valor padrão para caso não encontremos o objeto com a chave informada
pais = paises.get('ru', 'Não encontrado')
print(f'Encontrei o país {pais}')
# Podemos verificar se determinada chave se encontra em um dicionário
print('br' in paises)
print('ru' in paises)
print('Estados Unidos' in paises)
if 'ru' in paises:
russia = paises['ru']
# Podemos utilizar qualquer tipo de dado (int, float, string, boolean), inclusive lista, tupla, dicionário, como chaves
# de dicionários.
# Tuplas, por exemplo, são bastante interessantes de serem utilizadas como chave de dicionários, pois as mesmas
# são imutáveis.
localidades = {
(35.6895, 39.6917): 'Escritório em Tókio'
(40.7128, 74.0060): 'Escritório em Nova York'
(37.7749, 122.4194): 'Escritório em São Paulo'
}
print(localidades)
print(type(localidades))
# Adicionar elementos em um dicionário
receita = {'jan': 100, 'fev': 120, 'mar': 300}
print(receita)
print(type(receita))
# Forma1 - Mais comum
receita['abr'] = 350
print(receita)
# Forma2
novo_dado = {'mai': 500}
receita.update(novo_dado) # receita.update({'mai': 500})
print(receita)
# Atualizando dados em um dicionário
# Forma1
receita['mai'] = 550
print(receita)
# Forma2
receita.update({'mai': 600})
print(receita)
# CONCLUSÃO1: A forma de adicionar novos elementos ou atualizar dados em um dicionário é a mesma.
# CONCLUSÃO2: Em dicionários, NÂO podemos ter chaves repetidas.
# Remover dados de um dicionário
receita = {'jan': 100, 'fev': 120, 'mar': 300}
print(receita)
# Forma1 - Mais comum
ret = receita.pop('mar')
print(ret)
print(receita)
# OBS1: Aqui precisamos SEMPRE informar a chave, e caso não encontre o elemento, um KeyError é retornado.
# OBS2: Ao removermos um objeto, o valor deste objeto é sempre retornado.
# Forma2
del receita['fev']
print(receita)
# Se a chave não existir, será gerado um KeyError
# OBS: Neste caso, o valor removido não é retornado.
# Imagine que você tem um comércio eletrônico, onde temos um carrinho de compras na qual adicionamos produtos.
Carrinho de Compras:
Produto 1:
- nome;
- quantidade;
- preço;
Produto 2:
- nome;
- quantidade;
- preço;
# 1 - Poderíamos utilizar uma Lista para isso? Sim
carrinho = []
produto1 = ['PlayStation 4', 1, 2300.00]
produto2 = ['God of War 4', 1, 150.00]
carrinho.append(produto1)
carrinho.append(produto2)
print(carrinho)
# Teríamos que saber qual é o índice de cada informação no produto.
# 2 - Poderíamos utilizar uma Tupla para isso? Sim
produto1 = ('PlayStation 4', 1, 2300.00)
produto2 = ('God of War 4', 1, 150.00)
carrinho = (produto1, produto2)
print(carrinho)
# 3 - Poderíamos utilizar um Dicionário para isso? Sim
carrinho = []
produto1 = {'Nome': 'PlayStation 4', 'Quantidade': 1, 'Preço': 2300.00}
produto2 = {'Nome': 'God of War 4', 'Quantidade': 1, 'Preço': 150.00}
carrinho.append(produto1)
carrinho.append(produto2)
print(carrinho)
# Desta forma, facilmente adicionamos ou removemos produtos no carrinho e em cada produto
# podemos ter a certeza sobre cada informação.
# Métodos de dicionários
d = dict(a=1, b=2, c=3)
print(d)
print(type(d))
# Limpar o dicionário (Zerar dados)
d.clear()
print(d)
# Copiando um dicionário para outro
# Forma1 # Deep Copy
novo = d.copy()
print(novo)
novo['d'] = 4
print(d)
print(novo)
# Forma2 # Shallow Copy
novo = d
print(novo)
novo['d'] = 4
print(d)
print(novo)
"""
# Forma não usual de criação de dicionários
outro = {}.fromkeys('a', 'b')
print(outro)
print(type(outro))
usuario = {}.fromkeys(['nome', 'pontos', 'email', 'profile'], 'desconhecido')
print(usuario)
print(type(usuario))
# O método fromkeys recebe dois parâmetros: um iterável e um valor.
# Ele vai gerar para cada valor do iterável uma chave e irá atribuir a esta chave o valor informado.
veja = {}.fromkeys('teste', 'valor')
print(veja)
veja = {}.fromkeys(range(1, 11), 'novo')
print(veja)
|
# This program is free software: you can redistribute it and/or modify it under the
# terms of the Apache License (v2.0) as published by the Apache Software Foundation.
#
# This program is distributed in the hope that it will be useful, but WITHOUT ANY
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
# PARTICULAR PURPOSE. See the Apache License for more details.
#
# You should have received a copy of the Apache License along with this program.
# If not, see <https://www.apache.org/licenses/LICENSE-2.0>.
"""Initialization for resource-monitor."""
# package metadata
__appname__ = 'monitor'
__version__ = '2.3.1'
__authors__ = 'Geoffrey Lentner'
__contact__ = 'glentner@purdue.edu'
__license__ = 'Apache Software License 2.0'
__website__ = 'https://resource-monitor.readthedocs.io'
__copyright__ = 'Geoffrey Lentner 2019. All rights reserved.'
__description__ = 'A simple cross-platform system resource monitor.'
__keywords__ = 'cross-platform system resource-monitor telemetry utility command-line-tool'
|
class MonoidLawTester:
def __init__(self, monoid, value):
self.monoid = monoid
self.value = value
def left_identity_test(self):
monoid = self.monoid(self.value)
assert monoid.concat(monoid.neutral()) == monoid
def right_identity_test(self):
monoid = self.monoid(self.value)
assert monoid.neutral().concat(monoid) == monoid
def test(self):
self.left_identity_test()
self.right_identity_test()
|
class Circulo:
pi = 3.14 # variable de clase (sin self), puede ser utilizadas por las instancias
def __init__(self,radio):
self.radio = radio # radio es una variable de instancia
circle1 = Circulo(10)
circle2 = Circulo(20)
print(circle1.radio)
circle2.radio = 100
print(circle2.radio)
# uso de la variable sin instancia
print(Circulo.pi)
|
'''
在一个火车旅行很受欢迎的国度,你提前一年计划了一些火车旅行。在接下来的一年里,你要旅行的日子将以一个名为 days 的数组给出。每一项是一个从 1 到 365 的整数。
火车票有三种不同的销售方式:
一张为期一天的通行证售价为 costs[0] 美元;
一张为期七天的通行证售价为 costs[1] 美元;
一张为期三十天的通行证售价为 costs[2] 美元。
通行证允许数天无限制的旅行。 例如,如果我们在第 2 天获得一张为期 7 天的通行证,那么我们可以连着旅行 7 天:第 2 天、第 3 天、第 4 天、第 5 天、第 6 天、第 7 天和第 8 天。
返回你想要完成在给定的列表 days 中列出的每一天的旅行所需要的最低消费。
示例 1:
输入:days = [1,4,6,7,8,20], costs = [2,7,15]
输出:11
解释:
例如,这里有一种购买通行证的方法,可以让你完成你的旅行计划:
在第 1 天,你花了 costs[0] = $2 买了一张为期 1 天的通行证,它将在第 1 天生效。
在第 3 天,你花了 costs[1] = $7 买了一张为期 7 天的通行证,它将在第 3, 4, ..., 9 天生效。
在第 20 天,你花了 costs[0] = $2 买了一张为期 1 天的通行证,它将在第 20 天生效。
你总共花了 $11,并完成了你计划的每一天旅行。
示例 2:
输入:days = [1,2,3,4,5,6,7,8,9,10,30,31], costs = [2,7,15]
输出:17
解释:
例如,这里有一种购买通行证的方法,可以让你完成你的旅行计划:
在第 1 天,你花了 costs[2] = $15 买了一张为期 30 天的通行证,它将在第 1, 2, ..., 30 天生效。
在第 31 天,你花了 costs[0] = $2 买了一张为期 1 天的通行证,它将在第 31 天生效。
你总共花了 $17,并完成了你计划的每一天旅行。
提示:
1 <= days.length <= 365
1 <= days[i] <= 365
days 按顺序严格递增
costs.length == 3
1 <= costs[i] <= 1000
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/minimum-cost-for-tickets
'''
class Solution:
def mincostTickets(self, days: List[int], costs: List[int]) -> int:
N = len(days)
durations = [1, 7, 30]
@lru_cache(None)
def dp(i):
if i >= N:
return 0
ans = 10 ** 9
j = i
for c, d in zip(costs, durations):
while j < N and days[j] < days[i] + d:
j += 1
ans = min(ans, dp(j) + c)
return ans
return dp(0)
|
# -*- coding:utf-8 -*-
class Type:
id = ''
word_id = ''
name = ''
meanings = []
def desc(self):
name = self.name if self.name is not None else ''
return '(\'' + self.word_id + '\', \'' + name + '\')'
|
##Clock in pt2thon##
t1 = input("Init schedule : ") # first schedule
HH1 = int(t1[0] + t1[1])
MM1 = int(t1[3] + t1[4])
SS1 = int(t1[6] + t1[7])
t2 = input("Final schedule : ") # second schedule
HH2 = int(t2[0] + t2[1])
MM2 = int(t2[3] + t2[4])
SS2 = int(t2[6] + t2[7])
tt1 = (HH1 * 3600) + (MM1 * 60) + SS1 # total schedule 1
tt2 = (HH2 * 3600) + (MM2 * 60) + SS2 # total schedule 2
tt3 = tt2 - tt1 # difference between tt2 e tt1
# Part Math
if tt3 < 0:
# If the difference between tt2 e tt1 for negative :
a = 86400 - tt1 # 86400 is seconds in 1 day;
a2 = a + tt2 # a2 is the difference between 1 day e the <hours var>;
Ht = a2 // 3600 # Ht is hours calculated;
a = a2 % 3600 # Convert 'a' in seconds;
Mt = a // 60 # Mt is minutes calculated;
St = a % 60 # St is seconds calculated;
else:
# If the difference between tt2 e tt1 for positive :
Ht = tt3 // 3600 # Ht is hours calculated;
z = tt3 % 3600 # 'z' is tt3 converting in hours by seconds
Mt = z // 60 # Mt is minutes calculated;
St = tt3 % 60 # St is seconds calculated;
# special condition below :
if Ht < 10:
h = "0" + str(Ht)
Ht = h
if Mt < 10:
m = "0" + str(Mt)
Mt = m
if St < 10:
s = "0" + str(St)
St = s
# add '0' to the empty spaces (caused by previous operations) in the final result!
print(
"final result is :", str(Ht) + ":" + str(Mt) + ":" + str(St)
) # final result (formatted in clock)
|
# PySNMP SMI module. Autogenerated from smidump -f python IANA-MAU-MIB
# by libsmi2pysnmp-0.1.3 at Thu May 22 11:57:41 2014,
# Python version sys.version_info(major=2, minor=7, micro=2, releaselevel='final', serial=0)
# Imports
( Integer, ObjectIdentifier, OctetString, ) = mibBuilder.importSymbols("ASN1", "Integer", "ObjectIdentifier", "OctetString")
( NamedValues, ) = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
( ConstraintsIntersection, ConstraintsUnion, SingleValueConstraint, ValueRangeConstraint, ValueSizeConstraint, ) = mibBuilder.importSymbols("ASN1-REFINEMENT", "ConstraintsIntersection", "ConstraintsUnion", "SingleValueConstraint", "ValueRangeConstraint", "ValueSizeConstraint")
( Bits, Integer32, ModuleIdentity, MibIdentifier, ObjectIdentity, TimeTicks, mib_2, ) = mibBuilder.importSymbols("SNMPv2-SMI", "Bits", "Integer32", "ModuleIdentity", "MibIdentifier", "ObjectIdentity", "TimeTicks", "mib-2")
( TextualConvention, ) = mibBuilder.importSymbols("SNMPv2-TC", "TextualConvention")
# Types
class IANAifJackType(Integer):
subtypeSpec = Integer.subtypeSpec+SingleValueConstraint(9,15,11,3,7,8,12,4,2,1,13,6,5,10,14,)
namedValues = NamedValues(("other", 1), ("fiberST", 10), ("telco", 11), ("mtrj", 12), ("hssdc", 13), ("fiberLC", 14), ("cx4", 15), ("rj45", 2), ("rj45S", 3), ("db9", 4), ("bnc", 5), ("fAUI", 6), ("mAUI", 7), ("fiberSC", 8), ("fiberMIC", 9), )
class IANAifMauAutoNegCapBits(Bits):
namedValues = NamedValues(("bOther", 0), ("b10baseT", 1), ("bFdxSPause", 10), ("bFdxBPause", 11), ("b1000baseX", 12), ("b1000baseXFD", 13), ("b1000baseT", 14), ("b1000baseTFD", 15), ("b10baseTFD", 2), ("b100baseT4", 3), ("b100baseTX", 4), ("b100baseTXFD", 5), ("b100baseT2", 6), ("b100baseT2FD", 7), ("bFdxPause", 8), ("bFdxAPause", 9), )
class IANAifMauMediaAvailable(Integer):
subtypeSpec = Integer.subtypeSpec+SingleValueConstraint(9,3,12,13,20,6,2,17,1,14,10,7,5,4,16,11,15,8,18,19,)
namedValues = NamedValues(("other", 1), ("offline", 10), ("autoNegError", 11), ("pmdLinkFault", 12), ("wisFrameLoss", 13), ("wisSignalLoss", 14), ("pcsLinkFault", 15), ("excessiveBER", 16), ("dxsLinkFault", 17), ("pxsLinkFault", 18), ("availableReduced", 19), ("unknown", 2), ("ready", 20), ("available", 3), ("notAvailable", 4), ("remoteFault", 5), ("invalidSignal", 6), ("remoteJabber", 7), ("remoteLinkLoss", 8), ("remoteTest", 9), )
class IANAifMauTypeListBits(Bits):
namedValues = NamedValues(("bOther", 0), ("bAUI", 1), ("b10baseTHD", 10), ("b10baseTFD", 11), ("b10baseFLHD", 12), ("b10baseFLFD", 13), ("b100baseT4", 14), ("b100baseTXHD", 15), ("b100baseTXFD", 16), ("b100baseFXHD", 17), ("b100baseFXFD", 18), ("b100baseT2HD", 19), ("b10base5", 2), ("b100baseT2FD", 20), ("b1000baseXHD", 21), ("b1000baseXFD", 22), ("b1000baseLXHD", 23), ("b1000baseLXFD", 24), ("b1000baseSXHD", 25), ("b1000baseSXFD", 26), ("b1000baseCXHD", 27), ("b1000baseCXFD", 28), ("b1000baseTHD", 29), ("bFoirl", 3), ("b1000baseTFD", 30), ("b10GbaseX", 31), ("b10GbaseLX4", 32), ("b10GbaseR", 33), ("b10GbaseER", 34), ("b10GbaseLR", 35), ("b10GbaseSR", 36), ("b10GbaseW", 37), ("b10GbaseEW", 38), ("b10GbaseLW", 39), ("b10base2", 4), ("b10GbaseSW", 40), ("b10GbaseCX4", 41), ("b2BaseTL", 42), ("b10PassTS", 43), ("b100BaseBX10D", 44), ("b100BaseBX10U", 45), ("b100BaseLX10", 46), ("b1000BaseBX10D", 47), ("b1000BaseBX10U", 48), ("b1000BaseLX10", 49), ("b10baseT", 5), ("b1000BasePX10D", 50), ("b1000BasePX10U", 51), ("b1000BasePX20D", 52), ("b1000BasePX20U", 53), ("b10baseFP", 6), ("b10baseFB", 7), ("b10baseFL", 8), ("b10broad36", 9), )
# Objects
dot3MauType = MibIdentifier((1, 3, 6, 1, 2, 1, 26, 4))
dot3MauTypeAUI = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 1))
if mibBuilder.loadTexts: dot3MauTypeAUI.setDescription("no internal MAU, view from AUI")
dot3MauType10Base5 = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 2))
if mibBuilder.loadTexts: dot3MauType10Base5.setDescription("thick coax MAU")
dot3MauTypeFoirl = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 3))
if mibBuilder.loadTexts: dot3MauTypeFoirl.setDescription("FOIRL MAU")
dot3MauType10Base2 = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 4))
if mibBuilder.loadTexts: dot3MauType10Base2.setDescription("thin coax MAU")
dot3MauType10BaseT = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 5))
if mibBuilder.loadTexts: dot3MauType10BaseT.setDescription("UTP MAU.\nNote that it is strongly recommended that\nagents return either dot3MauType10BaseTHD or\ndot3MauType10BaseTFD if the duplex mode is\nknown. However, management applications should\nbe prepared to receive this MAU type value from\nolder agent implementations.")
dot3MauType10BaseFP = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 6))
if mibBuilder.loadTexts: dot3MauType10BaseFP.setDescription("passive fiber MAU")
dot3MauType10BaseFB = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 7))
if mibBuilder.loadTexts: dot3MauType10BaseFB.setDescription("sync fiber MAU")
dot3MauType10BaseFL = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 8))
if mibBuilder.loadTexts: dot3MauType10BaseFL.setDescription("async fiber MAU.\nNote that it is strongly recommended that\nagents return either dot3MauType10BaseFLHD or\ndot3MauType10BaseFLFD if the duplex mode is\nknown. However, management applications should\nbe prepared to receive this MAU type value from\nolder agent implementations.")
dot3MauType10Broad36 = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 9))
if mibBuilder.loadTexts: dot3MauType10Broad36.setDescription("broadband DTE MAU.\nNote that 10BROAD36 MAUs can be attached to\ninterfaces but not to repeaters.")
dot3MauType10BaseTHD = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 10))
if mibBuilder.loadTexts: dot3MauType10BaseTHD.setDescription("UTP MAU, half duplex mode")
dot3MauType10BaseTFD = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 11))
if mibBuilder.loadTexts: dot3MauType10BaseTFD.setDescription("UTP MAU, full duplex mode")
dot3MauType10BaseFLHD = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 12))
if mibBuilder.loadTexts: dot3MauType10BaseFLHD.setDescription("async fiber MAU, half duplex mode")
dot3MauType10BaseFLFD = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 13))
if mibBuilder.loadTexts: dot3MauType10BaseFLFD.setDescription("async fiber MAU, full duplex mode")
dot3MauType100BaseT4 = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 14))
if mibBuilder.loadTexts: dot3MauType100BaseT4.setDescription("4 pair category 3 UTP")
dot3MauType100BaseTXHD = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 15))
if mibBuilder.loadTexts: dot3MauType100BaseTXHD.setDescription("2 pair category 5 UTP, half duplex mode")
dot3MauType100BaseTXFD = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 16))
if mibBuilder.loadTexts: dot3MauType100BaseTXFD.setDescription("2 pair category 5 UTP, full duplex mode")
dot3MauType100BaseFXHD = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 17))
if mibBuilder.loadTexts: dot3MauType100BaseFXHD.setDescription("X fiber over PMT, half duplex mode")
dot3MauType100BaseFXFD = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 18))
if mibBuilder.loadTexts: dot3MauType100BaseFXFD.setDescription("X fiber over PMT, full duplex mode")
dot3MauType100BaseT2HD = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 19))
if mibBuilder.loadTexts: dot3MauType100BaseT2HD.setDescription("2 pair category 3 UTP, half duplex mode")
dot3MauType100BaseT2FD = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 20))
if mibBuilder.loadTexts: dot3MauType100BaseT2FD.setDescription("2 pair category 3 UTP, full duplex mode")
dot3MauType1000BaseXHD = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 21))
if mibBuilder.loadTexts: dot3MauType1000BaseXHD.setDescription("PCS/PMA, unknown PMD, half duplex mode")
dot3MauType1000BaseXFD = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 22))
if mibBuilder.loadTexts: dot3MauType1000BaseXFD.setDescription("PCS/PMA, unknown PMD, full duplex mode")
dot3MauType1000BaseLXHD = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 23))
if mibBuilder.loadTexts: dot3MauType1000BaseLXHD.setDescription("Fiber over long-wavelength laser, half duplex\nmode")
dot3MauType1000BaseLXFD = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 24))
if mibBuilder.loadTexts: dot3MauType1000BaseLXFD.setDescription("Fiber over long-wavelength laser, full duplex\nmode")
dot3MauType1000BaseSXHD = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 25))
if mibBuilder.loadTexts: dot3MauType1000BaseSXHD.setDescription("Fiber over short-wavelength laser, half\nduplex mode")
dot3MauType1000BaseSXFD = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 26))
if mibBuilder.loadTexts: dot3MauType1000BaseSXFD.setDescription("Fiber over short-wavelength laser, full\nduplex mode")
dot3MauType1000BaseCXHD = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 27))
if mibBuilder.loadTexts: dot3MauType1000BaseCXHD.setDescription("Copper over 150-Ohm balanced cable, half\nduplex mode")
dot3MauType1000BaseCXFD = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 28))
if mibBuilder.loadTexts: dot3MauType1000BaseCXFD.setDescription("Copper over 150-Ohm balanced cable, full\n\nduplex mode")
dot3MauType1000BaseTHD = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 29))
if mibBuilder.loadTexts: dot3MauType1000BaseTHD.setDescription("Four-pair Category 5 UTP, half duplex mode")
dot3MauType1000BaseTFD = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 30))
if mibBuilder.loadTexts: dot3MauType1000BaseTFD.setDescription("Four-pair Category 5 UTP, full duplex mode")
dot3MauType10GigBaseX = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 31))
if mibBuilder.loadTexts: dot3MauType10GigBaseX.setDescription("X PCS/PMA, unknown PMD.")
dot3MauType10GigBaseLX4 = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 32))
if mibBuilder.loadTexts: dot3MauType10GigBaseLX4.setDescription("X fiber over WWDM optics")
dot3MauType10GigBaseR = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 33))
if mibBuilder.loadTexts: dot3MauType10GigBaseR.setDescription("R PCS/PMA, unknown PMD.")
dot3MauType10GigBaseER = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 34))
if mibBuilder.loadTexts: dot3MauType10GigBaseER.setDescription("R fiber over 1550 nm optics")
dot3MauType10GigBaseLR = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 35))
if mibBuilder.loadTexts: dot3MauType10GigBaseLR.setDescription("R fiber over 1310 nm optics")
dot3MauType10GigBaseSR = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 36))
if mibBuilder.loadTexts: dot3MauType10GigBaseSR.setDescription("R fiber over 850 nm optics")
dot3MauType10GigBaseW = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 37))
if mibBuilder.loadTexts: dot3MauType10GigBaseW.setDescription("W PCS/PMA, unknown PMD.")
dot3MauType10GigBaseEW = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 38))
if mibBuilder.loadTexts: dot3MauType10GigBaseEW.setDescription("W fiber over 1550 nm optics")
dot3MauType10GigBaseLW = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 39))
if mibBuilder.loadTexts: dot3MauType10GigBaseLW.setDescription("W fiber over 1310 nm optics")
dot3MauType10GigBaseSW = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 40))
if mibBuilder.loadTexts: dot3MauType10GigBaseSW.setDescription("W fiber over 850 nm optics")
dot3MauType10GigBaseCX4 = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 41))
if mibBuilder.loadTexts: dot3MauType10GigBaseCX4.setDescription("X copper over 8 pair 100-Ohm balanced cable")
dot3MauType2BaseTL = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 42))
if mibBuilder.loadTexts: dot3MauType2BaseTL.setDescription("Voice grade UTP copper, up to 2700m, optional PAF")
dot3MauType10PassTS = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 43))
if mibBuilder.loadTexts: dot3MauType10PassTS.setDescription("Voice grade UTP copper, up to 750m, optional PAF")
dot3MauType100BaseBX10D = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 44))
if mibBuilder.loadTexts: dot3MauType100BaseBX10D.setDescription("One single-mode fiber OLT, long wavelength, 10km")
dot3MauType100BaseBX10U = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 45))
if mibBuilder.loadTexts: dot3MauType100BaseBX10U.setDescription("One single-mode fiber ONU, long wavelength, 10km")
dot3MauType100BaseLX10 = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 46))
if mibBuilder.loadTexts: dot3MauType100BaseLX10.setDescription("Two single-mode fibers, long wavelength, 10km")
dot3MauType1000BaseBX10D = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 47))
if mibBuilder.loadTexts: dot3MauType1000BaseBX10D.setDescription("One single-mode fiber OLT, long wavelength, 10km")
dot3MauType1000BaseBX10U = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 48))
if mibBuilder.loadTexts: dot3MauType1000BaseBX10U.setDescription("One single-mode fiber ONU, long wavelength, 10km")
dot3MauType1000BaseLX10 = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 49))
if mibBuilder.loadTexts: dot3MauType1000BaseLX10.setDescription("Two sigle-mode fiber, long wavelength, 10km")
dot3MauType1000BasePX10D = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 50))
if mibBuilder.loadTexts: dot3MauType1000BasePX10D.setDescription("One single-mode fiber EPON OLT, 10km")
dot3MauType1000BasePX10U = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 51))
if mibBuilder.loadTexts: dot3MauType1000BasePX10U.setDescription("One single-mode fiber EPON ONU, 10km")
dot3MauType1000BasePX20D = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 52))
if mibBuilder.loadTexts: dot3MauType1000BasePX20D.setDescription("One single-mode fiber EPON OLT, 20km")
dot3MauType1000BasePX20U = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 53))
if mibBuilder.loadTexts: dot3MauType1000BasePX20U.setDescription("One single-mode fiber EPON ONU, 20km")
ianaMauMIB = ModuleIdentity((1, 3, 6, 1, 2, 1, 154)).setRevisions(("2007-04-21 00:00",))
if mibBuilder.loadTexts: ianaMauMIB.setOrganization("IANA")
if mibBuilder.loadTexts: ianaMauMIB.setContactInfo(" Internet Assigned Numbers Authority\n\nPostal: ICANN\n 4676 Admiralty Way, Suite 330\n Marina del Rey, CA 90292\n\n Tel: +1-310-823-9358\n EMail: iana&iana.org")
if mibBuilder.loadTexts: ianaMauMIB.setDescription("This MIB module defines dot3MauType OBJECT-IDENTITIES and\nIANAifMauListBits, IANAifMauMediaAvailable,\nIANAifMauAutoNegCapBits, and IANAifJackType\n\nTEXTUAL-CONVENTIONs, specifying enumerated values of the\nifMauTypeListBits, ifMauMediaAvailable / rpMauMediaAvailable,\nifMauAutoNegCapabilityBits / ifMauAutoNegCapAdvertisedBits /\nifMauAutoNegCapReceivedBits and ifJackType / rpJackType objects\nrespectively, defined in the MAU-MIB.\n\nIt is intended that each new MAU type, Media Availability\nstate, Auto Negotiation capability and/or Jack type defined by\nthe IEEE 802.3 working group and approved for publication in a\nrevision of IEEE Std 802.3 will be added to this MIB module,\nprovided that it is suitable for being managed by the base\nobjects in the MAU-MIB. An Expert Review, as defined in\nRFC 2434 [RFC2434], is REQUIRED for such additions.\n\nThe following reference is used throughout this MIB module:\n\n[IEEE802.3] refers to:\n IEEE Std 802.3, 2005 Edition: 'IEEE Standard for\n Information technology - Telecommunications and information\n exchange between systems - Local and metropolitan area\n networks - Specific requirements -\n Part 3: Carrier sense multiple access with collision\n detection (CSMA/CD) access method and physical layer\n specifications'.\n\nThis reference should be updated as appropriate when new\nMAU types, Media Availability states, Auto Negotiation\ncapabilities, and/or Jack types are added to this MIB module.\n\nCopyright (C) The IETF Trust (2007).\nThe initial version of this MIB module was published in\nRFC 4836; for full legal notices see the RFC itself.\nSupplementary information may be available at:\nhttp://www.ietf.org/copyrights/ianamib.html")
# Augmentions
# Exports
# Module identity
mibBuilder.exportSymbols("IANA-MAU-MIB", PYSNMP_MODULE_ID=ianaMauMIB)
# Types
mibBuilder.exportSymbols("IANA-MAU-MIB", IANAifJackType=IANAifJackType, IANAifMauAutoNegCapBits=IANAifMauAutoNegCapBits, IANAifMauMediaAvailable=IANAifMauMediaAvailable, IANAifMauTypeListBits=IANAifMauTypeListBits)
# Objects
mibBuilder.exportSymbols("IANA-MAU-MIB", dot3MauType=dot3MauType, dot3MauTypeAUI=dot3MauTypeAUI, dot3MauType10Base5=dot3MauType10Base5, dot3MauTypeFoirl=dot3MauTypeFoirl, dot3MauType10Base2=dot3MauType10Base2, dot3MauType10BaseT=dot3MauType10BaseT, dot3MauType10BaseFP=dot3MauType10BaseFP, dot3MauType10BaseFB=dot3MauType10BaseFB, dot3MauType10BaseFL=dot3MauType10BaseFL, dot3MauType10Broad36=dot3MauType10Broad36, dot3MauType10BaseTHD=dot3MauType10BaseTHD, dot3MauType10BaseTFD=dot3MauType10BaseTFD, dot3MauType10BaseFLHD=dot3MauType10BaseFLHD, dot3MauType10BaseFLFD=dot3MauType10BaseFLFD, dot3MauType100BaseT4=dot3MauType100BaseT4, dot3MauType100BaseTXHD=dot3MauType100BaseTXHD, dot3MauType100BaseTXFD=dot3MauType100BaseTXFD, dot3MauType100BaseFXHD=dot3MauType100BaseFXHD, dot3MauType100BaseFXFD=dot3MauType100BaseFXFD, dot3MauType100BaseT2HD=dot3MauType100BaseT2HD, dot3MauType100BaseT2FD=dot3MauType100BaseT2FD, dot3MauType1000BaseXHD=dot3MauType1000BaseXHD, dot3MauType1000BaseXFD=dot3MauType1000BaseXFD, dot3MauType1000BaseLXHD=dot3MauType1000BaseLXHD, dot3MauType1000BaseLXFD=dot3MauType1000BaseLXFD, dot3MauType1000BaseSXHD=dot3MauType1000BaseSXHD, dot3MauType1000BaseSXFD=dot3MauType1000BaseSXFD, dot3MauType1000BaseCXHD=dot3MauType1000BaseCXHD, dot3MauType1000BaseCXFD=dot3MauType1000BaseCXFD, dot3MauType1000BaseTHD=dot3MauType1000BaseTHD, dot3MauType1000BaseTFD=dot3MauType1000BaseTFD, dot3MauType10GigBaseX=dot3MauType10GigBaseX, dot3MauType10GigBaseLX4=dot3MauType10GigBaseLX4, dot3MauType10GigBaseR=dot3MauType10GigBaseR, dot3MauType10GigBaseER=dot3MauType10GigBaseER, dot3MauType10GigBaseLR=dot3MauType10GigBaseLR, dot3MauType10GigBaseSR=dot3MauType10GigBaseSR, dot3MauType10GigBaseW=dot3MauType10GigBaseW, dot3MauType10GigBaseEW=dot3MauType10GigBaseEW, dot3MauType10GigBaseLW=dot3MauType10GigBaseLW, dot3MauType10GigBaseSW=dot3MauType10GigBaseSW, dot3MauType10GigBaseCX4=dot3MauType10GigBaseCX4, dot3MauType2BaseTL=dot3MauType2BaseTL, dot3MauType10PassTS=dot3MauType10PassTS, dot3MauType100BaseBX10D=dot3MauType100BaseBX10D, dot3MauType100BaseBX10U=dot3MauType100BaseBX10U, dot3MauType100BaseLX10=dot3MauType100BaseLX10, dot3MauType1000BaseBX10D=dot3MauType1000BaseBX10D, dot3MauType1000BaseBX10U=dot3MauType1000BaseBX10U, dot3MauType1000BaseLX10=dot3MauType1000BaseLX10, dot3MauType1000BasePX10D=dot3MauType1000BasePX10D, dot3MauType1000BasePX10U=dot3MauType1000BasePX10U, dot3MauType1000BasePX20D=dot3MauType1000BasePX20D, dot3MauType1000BasePX20U=dot3MauType1000BasePX20U, ianaMauMIB=ianaMauMIB)
|
# gemato: Utility functions
# vim:fileencoding=utf-8
# (c) 2017 Michał Górny
# Licensed under the terms of 2-clause BSD license
def path_starts_with(path, prefix):
"""
Returns True if the specified @path starts with the @prefix,
performing component-wide comparison. Otherwise returns False.
"""
return prefix == "" or (path + "/").startswith(prefix.rstrip("/") + "/")
def path_inside_dir(path, directory):
"""
Returns True if the specified @path is inside @directory,
performing component-wide comparison. Otherwise returns False.
"""
return ((directory == "" and path != "")
or path.rstrip("/").startswith(directory.rstrip("/") + "/"))
def throw_exception(e):
"""
Raise the given exception. Needed for onerror= argument
to os.walk(). Useful for other callbacks.
"""
raise e
|
# name: Exes and Ohs
# url: https://www.codewars.com/kata/55908aad6620c066bc00002a
# Check to see if a string has the same amount of 'x's and 'o's. The method
# must return a boolean and be case insensitive. The string can contain any char.
def xo(s):
lowerStr = s.lower()
return lowerStr.count('o') == lowerStr.count('x')
if __name__ == '__main__':
print(xo("ooxx")) # => true
print(xo("xooxx")) # => false
print(xo("ooxXm")) # => true
print(xo("zpzpzpp")) # => true // when no 'x' and 'o' is present should return true
print(xo("zzoo")) # => false
|
BASE_URL = "https://paper-api.alpaca.markets"
KEY = "your key here"
SECRET_KEY = "your secret key here"
HEADERS = {"APCA-API-KEY-ID": KEY, "APCA-API-SECRET-KEY": SECRET_KEY}
# headers are used to authenticate our request
|
# coding: utf-8
# Copyright 2014 jeoliva author. All rights reserved.
# Use of this source code is governed by a MIT License
# license that can be found in the LICENSE file.
class RangedUri(object):
def __init__(self):
self.start = 0
self.length = -1
self.baseUri = ""
self.referenceUri = ""
|
#coding=utf-8
"""
c module 文档
"""
class c_cc(object):
"""
c_cc类说明
"""
def func_c_cc(self):
"""
func说明
:return:
"""
return None
|
class Solution:
def wordPatternV1(self, pattern: str, str: str) -> bool:
p2s, s2p, words = {}, {}, str.split()
if len(pattern) != len(words):
return False
for p, s in zip(pattern, words):
if p in p2s and p2s[p] != s:
return False
else:
p2s[p] = s
if s in s2p and s2p[s] != p:
return False
else:
s2p[s] = p
return True
def wordPatternV2(self, pattern: str, str: str) -> bool:
# map the element of iterable xs to the index of first appearance
f = lambda xs: map({}.setdefault, xs, range(len(xs)))
return list(f(pattern)) == list(f(str.split()))
# TESTS
tests = [
("aaa", "aa aa aa aa", False),
("abba", "dog cat cat dog", True),
("abba", "dog cat cat fish", False),
("aaaa", "dog cat cat dog", False),
("abba", "dog dog dog dog", False),
]
for pattern, string, expected in tests:
sol = Solution()
actual = sol.wordPatternV1(pattern, string)
print("String", string, "follows the same pattern", pattern, "->", actual)
assert actual == expected
assert expected == sol.wordPatternV2(pattern, string)
|
#-------------------------------------------------------------------------------
# Name: powerlaw.py
# Purpose: This is a set of power law coefficients(a,b) for the calculation of
# empirical rain attenuation model A = a*R^b.
#-------------------------------------------------------------------------------
def get_coef_ab(freq, mod_type = 'MP'):
'''
Returns power law coefficients according to model type (mod_type)
at a given frequency[Hz].
Input:
freq - frequency, [Hz].
Optional:
mod_type - model type for power law. This can be 'ITU_R2005',
'MP','GAMMA'. By default, mode_type = 'ITU_R2005'.
Output:
a,b - power law coefficients.
'''
if mod_type == 'ITU_R2005':
a = {'18': 0.07393, '23': 0.1285, '38': 0.39225}
b = {'18':1.0404605978, '23': 0.99222272,'38':0.8686641682}
elif mod_type == 'MP':
a = {'18': 0.05911087, '23': 0.1080751, '38': 0.37898495}
b = {'18': 1.08693514, '23': 1.05342886, '38': 0.92876888}
elif mod_type=='GAMMA':
a = {'18': 0.04570854, '23': 0.08174184, '38': 0.28520923}
b = {'18': 1.09211488, '23': 1.08105214, '38': 1.01426258}
freq = int(freq/1e9)
return a[str(freq)], b[str(freq)]
|
"""18 - Em campeonato de futebol por pontos corridos, as pontuações funcionam da
seguinte forma: 0 pontos por derrota, 1 ponto por empate e 3 pontos por vitória.
Construa uma função que receba a quantidade de vitórias, derrotas e empates de
um time e retorne a sua pontuação total ao fim do campeonato"""
def pontuacao(d,e,v):
return (d*0) + (e*1) + (v*3)
d = int(input("numero de derrotas no campeonato:"))
e = int(input("numero de empates no campeonato:"))
v = int(input("numero de vitorias no campeonato:"))
x = pontuacao(d,e,v)
print("pontuacao ao fim do campeonato:",x)
|
def isPalindrome(x):
#x = x.casefold()
rev_str = reversed(x)
if list(x) == list(rev_str):
print("It is palindrome")
return True
else:
print("It is not palindrome")
return False
isPalindrome("SSAASS")
|
'''Application Data (bpy.app)
This module contains application values that remain unchanged during runtime.
'''
debug = None
'''Boolean, for debug info (started with --debug / --debug_* matching this attribute name)
'''
debug_events = None
'''Boolean, for debug info (started with --debug / --debug_* matching this attribute name)
'''
debug_ffmpeg = None
'''Boolean, for debug info (started with --debug / --debug_* matching this attribute name)
'''
debug_handlers = None
'''Boolean, for debug info (started with --debug / --debug_* matching this attribute name)
'''
debug_python = None
'''Boolean, for debug info (started with --debug / --debug_* matching this attribute name)
'''
debug_value = None
'''Int, number which can be set to non-zero values for testing purposes
'''
debug_wm = None
'''Boolean, for debug info (started with --debug / --debug_* matching this attribute name)
'''
driver_namespace = None
'''Dictionary for drivers namespace, editable in-place, reset on file load (read-only)
'''
tempdir = None
'''String, the temp directory used by blender (read-only)
'''
background = None
'''Boolean, True when blender is running without a user interface (started with -b)
'''
binary_path = None
'''The location of blenders executable, useful for utilities that spawn new instances
'''
build_cflags = None
'''C compiler flags
'''
build_cxxflags = None
'''C++ compiler flags
'''
build_date = None
'''The date this blender instance was built
'''
build_linkflags = None
'''Binary linking flags
'''
build_options = None
'''A set containing most important enabled optional build features
'''
build_platform = None
'''The platform this blender instance was built for
'''
build_revision = None
'''The subversion revision this blender instance was built with
'''
build_system = None
'''Build system used
'''
build_time = None
'''The time this blender instance was built
'''
build_type = None
'''The type of build (Release, Debug)
'''
ffmpeg = None
'''FFmpeg library information backend
'''
handlers = None
'''Application handler callbacks
'''
translations = None
'''Application and addons internationalization API
'''
version = None
'''The Blender version as a tuple of 3 numbers. eg. (2, 50, 11)
'''
version_char = None
'''The Blender version character (for minor releases)
'''
version_cycle = None
'''The release status of this build alpha/beta/rc/release
'''
version_string = None
'''The Blender version formatted as a string
'''
def count(*argv):
'''T.count(value) -> integer -- return number of occurrences of value
'''
pass
def index(*argv):
'''T.index(value, [start, [stop]]) -> integer -- return first index of value.
Raises ValueError if the value is not present.
'''
pass
|
##############################################
# parameters than can be defined by the user #
##############################################
# parameters modifying the behaviour of the network
global weight_multiplicator # multiplicator of a returned observation, allow to scale observations in order to make the network differentiate them
weight_multiplicator = 0.25
global victory_reward
victory_reward = 0 # reward at win
global defeat_punishment
defeat_punishment = 1 # punishment given when the game is lost (pool fall or cart get out of bound)
global network_param
network_param = [4] # shape of hidden layers
network_type = "mlp" # network_type ("mlp", "elman")
# parameters modifying the result display (might not be change by a common user)
max_score = 200 # score which makes the game end (200 is the basic OpenAI gym value)
nb_seq = 1000 # lenght of a simulation
nb_simulation = 10 # number of simulations
save_frequency = 100
gamma = 0.6
hyperopt = 0 # set to 1 to launch with hyperopt, 0 for normal use
pro_level_exists = 0 # if set to 1, the network stop learning after winning a game
|
preço = 0
preço_total = 0
blá = ''
gleb = []
pedido = []
print('Lukepe: Eae mulekão!! Bem vindo ao restaurante do Lukepe')
print('Gleb: Eae mulekão!! Tem oq nesse cardápio?')
while True:
garçon_preço = [input('o que tem no cardápio garçon?: '), float(input('qual é o preço?: '))]
pedido.append(garçon_preço)
escolha = input('tem mais garçon? ')
if escolha == 'não':
break
while True:
print(f'Lukepe: essas são as opções mulekão!!: {pedido}')
blá = input('Gleb: eu vou querer: ')
gleb.append(blá)
escolhendo = input('Lukepe: Vai querer algo mais mulekão? ')
if escolhendo == 'não':
break
for tudo in pedido:
if tudo[0] in gleb:
preço_total += tudo[1]
print(f'Lukepe: seu pedido foi esse mulekão {gleb}, ele deu R${preço_total}')
|
# -*- coding: utf-8 -*-
name = 'nuke_ML_server'
version = '0.1.3'
build_requires = [
'cmake-3.10+'
]
variants = [
['platform-linux', 'arch-x86_64', 'nuke-12.2']
]
def commands():
env.NUKE_PATH.append('{root}/lib')
env.LDD_LIBRARY_PATH.append(env.NUKE_LOCATION)
|
input()
x = list(map(int, input().split()))
N = len(x)
for i in range(0, N - 1):
for j in range(0, N - i - 1):
if x[j] > x[j + 1]:
x[j], x[j + 1] = x[j + 1], x[j]
print(' '.join(map(str, x)))
|
class Solution:
def reverseString(self, s):
"""
:type s: str
:rtype: str
"""
output = list(s)
output = output[::-1]
output = "".join(output)
return output
|
# author: Bilal El Uneis
# since: April 2018
# bilaleluneis@gmail.com
class Methods:
number_of_instances = 0 # this is a class level property
# initializer with default values (constructor)
def __init__(self, method_name="anonymous", method_return_type="void"):
self.method_name = method_name
self.method_return_type = method_return_type
type(self).number_of_instances += 1 # this is how to access class level var inside init
# I am guessing this is like a destructor in other languages like C++
def __del__(self):
type(self).number_of_instances -= 1
# this is an instance method, every instance method has first argument as self
def update_method_name(self, new_name):
self.method_name = new_name
# this is a class level method
@classmethod
def get_class_number_of_instances(cls):
return cls.number_of_instances
# a static method
@staticmethod
def is_valid_return_type(method_return_type):
if method_return_type in ["void", "int", "String"]:
return True
else:
return False
# start of running code
if __name__ == "__main__":
print("current number of instances = {}".format(Methods.get_class_number_of_instances()))
instance_1 = Methods()
instance_2 = Methods(method_return_type="float") # need to use argument name if you are passing only one param
instance_3 = Methods("awesome", "String")
print("current number of instances = {}".format(Methods.get_class_number_of_instances()))
instance_1.update_method_name("instance_1")
print("instance_1 method name is updated to {}".format(instance_1.method_name))
del instance_1 # this will call the __del__ (destructor)
print("current number of instances = {}".format(Methods.get_class_number_of_instances()))
valid_return_type = Methods.is_valid_return_type(instance_2.method_return_type)
print("instance_2 method return type is valid: {}".format(valid_return_type))
valid_return_type = Methods.is_valid_return_type(instance_3.method_return_type)
print("instance_3 method return type is valid: {}".format(valid_return_type))
del instance_2
del instance_3
print("current number of instances = {}".format(Methods.get_class_number_of_instances()))
|
n = int(input())
a = list(map(int, input().split()))
total = sum(a)
if total % n != 0:
print(-1)
exit()
num = total // n
ans = 0
for i in range(n - 1):
left = sum(a[:i + 1])
right = sum(a[i + 1:])
if left < num * (i + 1) or right < num * (n - i - 1):
ans += 1
print(ans)
|
#encoding:utf-8
subreddit = 'KamenRider'
t_channel = '@r_KamenRider'
def send_post(submission, r2t):
return r2t.send_simple(submission)
|
"""Python implementation of Binary Search Tree."""
class BST(): # pragma: no cover
"""Binary Search Tree."""
def __init__(self):
"""Initialize Binary Search tree."""
self._root = None
self._length = 0
self._rdepth = 0
self._ldepth = 0
self._depth = 0
self._balance = 0
def insert(self, val, list_pair):
"""Insert new node into Binary Search Tree."""
if type(val) != int:
raise TypeError('You can only add numbers to this tree.')
curr = self._root
if curr is None:
curr = Node(val)
curr._list.append(list_pair)
self._root = curr
self._length = 1
self._depth = 1
return
while True:
if val < curr.val:
if curr.left:
curr = curr.left
else:
curr.left = Node(val)
curr.left._list.append(list_pair)
curr.left.parent = curr
self._length += 1
self._bal_and_rotate(curr.left)
return
elif val > curr.val:
if curr.right:
curr = curr.right
else:
curr.right = Node(val)
curr.right._list.append(list_pair)
curr.right.parent = curr
self._length += 1
self._bal_and_rotate(curr.right)
return
else:
current_keys = []
for item in curr._list:
current_keys.append(item[0])
if list_pair[0] not in current_keys:
curr._list.append(list_pair)
return
else:
for item in curr._list:
if item[0] == list_pair[0]:
curr._list[curr._list.index(item)] = list_pair
return
def search(self, val):
"""Find the node at val in Binary Search Tree."""
curr = self._root
if type(val) != int:
raise TypeError('This tree only contains numbers.')
while curr:
if val < curr.val:
curr = curr.left
elif val > curr.val:
curr = curr.right
else:
return curr
def size(self):
"""Return the amount of nodes in Binary Search Tree."""
return self._length
def _bal_and_rotate(self, node):
"""Check balance and rotate as needed for full tree."""
balanced = False
curr = node
if curr != self._root:
par_bal = self._tree_depth(curr.parent)
if par_bal[0] > par_bal[1]:
curr = curr.parent.right
else:
curr = curr.parent.left
while not balanced:
auto_bal = self._check_bal(curr.parent, curr)
if len(auto_bal) == 2:
balanced = True
self._rdepth = auto_bal[0]
self._ldepth = auto_bal[1]
self._balance = self._rdepth - self._ldepth
self._depth = max([self._rdepth, self._ldepth]) + 1
elif auto_bal[2] == -2 and auto_bal[3] in [-1, 0]:
self._rotate_right(auto_bal[0])
curr = auto_bal[0]
elif auto_bal[2] == 2 and auto_bal[3] in [1, 0]:
self._rotate_left(auto_bal[0])
curr = auto_bal[0]
elif auto_bal[2] == -2 and auto_bal[3] == 1:
self._rotate_left(auto_bal[1])
self._rotate_right(auto_bal[0])
curr = auto_bal[0]
elif auto_bal[2] == 2 and auto_bal[3] == -1:
self._rotate_right(auto_bal[1])
self._rotate_left(auto_bal[0])
curr = auto_bal[0]
return
def _check_bal(self, par_node, child):
"""Check the for balance of tree or sub tree.
Continues up till out of balance or complete.
"""
while True:
if child.right or child.left:
child_bal = self._tree_depth(child)
else:
child_bal = (0, 0)
if par_node is not None:
par_bal = self._tree_depth(par_node)
bal = par_bal[0] - par_bal[1]
if bal in range(-1, 2):
child = par_node
par_node = par_node.parent
else:
return par_node, child, bal, child_bal[0] - child_bal[1]
else:
return child_bal[0], child_bal[1]
def _rotate_right(self, node):
"""Right rotation for current node."""
curr = node.left
node.left = curr.right
if node.left:
node.left.parent = node
curr.parent = node.parent
curr.right = node
node.parent = curr
if curr.parent:
if curr.parent.right == node:
curr.parent.right = curr
else:
curr.parent.left = curr
else:
self._root = curr
curr.parent = None
return
def _rotate_left(self, node):
"""Left rotation for current node."""
curr = node.right
node.right = curr.left
if node.right:
node.right.parent = node
curr.parent = node.parent
curr.left = node
node.parent = curr
if curr.parent:
if curr.parent.right == node:
curr.parent.right = curr
else:
curr.parent.left = curr
else:
self._root = curr
curr.parent = None
return
def _tree_depth(self, node):
"""Get the depth of the tree or sub tree."""
lside = {}
rside = {}
on_right = False
curr = None
if node.left:
curr = node.left
elif node.right:
curr = node.right
while True:
if curr == node.right:
on_right = True
elif not node.left:
on_right = True
if curr == node and curr.left and curr.left in lside.keys():
curr = curr.right
on_right = True
elif on_right:
if curr not in rside.keys() and curr.parent in rside.keys():
rside[curr] = rside[curr.parent] + 1
elif curr == node.right:
rside[curr] = 1
if curr.left and curr.left not in rside.keys():
curr = curr.left
elif curr.right and curr.right not in rside.keys():
curr = curr.right
else:
curr = curr.parent
else:
if curr not in lside.keys() and curr.parent in lside.keys():
lside[curr] = lside[curr.parent] + 1
elif curr == node.left:
lside[curr] = 1
if curr.left and curr.left not in lside.keys():
curr = curr.left
elif curr.right and curr.right not in lside.keys():
curr = curr.right
else:
curr = curr.parent
if on_right or not node.right:
if curr == node:
if rside and lside:
return (max(rside.values()),
max(lside.values()))
elif rside:
return (max(rside.values()), 0)
else:
return (0, max(lside.values()))
class Node(): # pragma: no cover
"""Create a node to add to the Binary Search Tree."""
def __init__(self, val, parent=None, left=None, right=None):
"""Initialize a new node."""
self.val = val
self._list = []
self.parent = parent
self.left = left
self.right = right
|
t = int(input())
tests = []
def fact(n):
if n == 1:
return n
else:
return n * fact(n - 1)
while t > 0:
n = int(input())
tests.append(fact(n))
t -= 1
for x in tests:
print(x % 10)
|
class Distribution:
def __init__(self, mu=0, sigma=1):
""" Genertic distribution class for calculating and visualizing
a probability disttribution.
Attributes:
mean (float) representing the mean value of the distribution.
stdev (float) representing the standard deviation of the
distribution.
data_list (list of floats) a list of floats extracted from the
data file.
"""
self.mean = mu
self.stdev = sigma
self.data = []
def read_data_file(self, file_name):
""" Function to read in data from a txt file. The txt file
should have one number (float) per line. The numbers are stored
in the data attributes.
Args:
file_name (string): name of a file to read from
Returns:
None
"""
with open(file_name) as file:
data_list = []
line = file.readline()
while line:
data_list.append(int(line))
line = file.readline()
file.close()
self.data = data_list
|
#!/usr/bin/env python
# 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://www.apache.org/licenses/LICENSE-2.0
#
# Authors:
# - Paul Nilsson, paul.nilsson@cern.ch, 2018-2021
def allow_memory_usage_verifications():
"""
Should memory usage verifications be performed?
:return: boolean.
"""
return False
def memory_usage(job):
"""
Perform memory usage verification.
:param job: job object
:return: exit code (int), diagnostics (string).
"""
exit_code = 0
diagnostics = ""
return exit_code, diagnostics
|
# ирішити в цілих числах рівняння: $$(ax + b) / (cx + d) = 0$$
#
# # Формат введення
#
# водяться 4 числа: $$a, b, c, d; c і d$$ не рівні нулю одночасно.
#
# # Формат виведення
#
# еобхідно вивести всі рішення, якщо їх число звичайно, "NO" (без лапок), якщо рішень немає, і "INF" (без лапок), якщо рішень нескінченно багато.
# a = int(input())
# b = int(input())
# c = int(input())
# d = int(input())
# if (a == c and b == d) or (a == 0 and b != 0):
# print("NO")
# else:
# if a == 0 and b == 0:
# print("INF")
# else:
# if a != 0:
# if (d - b * c / a) != 0 and (- b / a) == (- b // a):
# print(- b // a)
# else:
# print("NO")
# else:
# print("NO")
#
a = int(input())
b = int(input())
c = int(input())
d = int(input())
if a == 0 and b == 0:
print("INF")
else:
if (d - b * c / a) != 0 and (- b / a) == (- b // a):
print(- b // a)
else:
print("NO")
|
# dictionary, emoji convertion, split method
message = input(">")
words = message.split(' ')
print(words) # get a seperated words of the msg
emojis = {
":)": "😄",
":(": "😟"
}
output = ""
for word in words:
output += emojis.get(word, word) + " "
print(output)
|
# Adapted from byterun test_functions.py test
# Tests returning from a generator
"""This program is self-checking!"""
def gen():
yield 1
return 2
x = gen()
while True:
try:
assert next(x) == 1
except StopIteration as e:
assert e.value == 2
break
|
"""
Class for holding and accessing a
"Named Entity" for a relation
"""
class NamedEntity:
def __init__(self, entity, doc):
self.entity = entity
"""
Gets the type of entity
this object represents.
"PERSON", "ORG", etc.
"""
@property
def entity_type(self):
return None
"""
Gets the text span of this entity,
referring to the original document
"""
@property
def text(self):
return None
"""
Holds a set of entities, not necessarily from the same collection
This is an immutable collection
"""
class NamedEntityCollection:
def __init__(self, entities):
self.entities = self.entities
def join(self, other):
return []
def get_entity(self, span):
return None
def get_entityies_by_type(self, type):
return None
|
for _ in range(int(input())):
a,b,q=map(int,input().split())
arr=[]
for i in range(q):
arr+=[list(map(int,input().split()))]
res=0
if a!=b:
for j in range(arr[i][0],arr[i][1]+1):
if (j%a)%b!=(j%b)%a:
res+=1
if i!=q-1:
print(res,end=" ")
if i==q-1:
print(res)
|
#!/anaconda3/envs/nlp python3.8
# -*- coding: utf-8 -*-
# ---
# @File: sentiment_predict.py
# @Author: HW Shen
# @Time: 9月 15, 2020
# ---
class SentimentModel(object):
def __init__(self):
self.gloveEmbedding = 0
|
# The isBadVersion API is already defined for you.
# @param version, an integer
# @return a bool
def isBadVersion(version):
pass
class Solution:
def firstBadVersion(self, n):
left, right = 0, n
while left <= right:
mid = (left + right) // 2
if not isBadVersion(mid):
left = mid + 1
else:
right = mid - 1
return left
|
"""
LC 26
Given an array of sorted numbers,
remove all duplicates from it. You should not use any extra space;
after removing the duplicates in-place return the length of the subarray that has no duplicate in it.
Example 1:
Input: [2, 3, 3, 3, 6, 9, 9]
Output: 4
Explanation: The first four elements after removing the duplicates will be [2, 3, 6, 9].
Example 2:
Input: [2, 2, 2, 11]
Output: 2
Explanation: The first two elements after removing the duplicates will be [2, 11].
"""
def remove_duplicates(arr):
p_place = 0
last_n = float('inf')
for p_iter, n in enumerate(arr):
if n != last_n:
arr[p_place] = n
last_n = n
p_place += 1
return p_place
def main():
print(remove_duplicates([2, 3, 3, 3, 6, 9, 9])) # 4
print(remove_duplicates([2, 2, 2, 11])) # 2
main()
"""
Time O(N)
Space O(1)
"""
|
def takeInstInput(S):
degrees = []
inputS = S.split(" ")
inputS = [int(x) for x in inputS]
for i in range(len(inputS)):
degrees.append((inputS[i], i))
return degrees
def takeFileInput(FileName):
fileI = open(FileName, 'r')
inputS = fileI.readline()
degrees = takeInstInput(inputS)
fileI.close()
return inputS, degrees
|
"""
Given a N cross M matrix in which each row is sorted, find the overall median of the matrix.
Assume N*M is odd.
For example,
Matrix=
[1, 3, 5]
[2, 6, 9]
[3, 6, 9]
A = [1, 2, 3, 3, 5, 6, 6, 9, 9]
Median is 5. So, we return 5.
"""
def median_matrix(A):
if len(A) == 1:
vec = A[0]
return vec[len(vec)//2]
else:
new_list = []
for row in range(len(A)):
new_list.extend(A[row])
new_list = sorted(new_list)
return new_list[len(new_list)//2]
# Example 1:
l1 = [1, 3, 5]
l2 = [2, 6, 9]
l3 = [3, 6, 9]
A = [l1, l2, l3]
# Example 2:
A1 = [l1]
print(median_matrix(A))
print(median_matrix(A1))
|
"""arbmod.py just a sample module for use with tests."""
def arbmod_attribute():
"""Do nothing."""
pass
|
""" The Borg Pattern
Notes:
Originally proposed by Alex Martelli, the Borg Pattern improves upon the classical
Singleton pattern by questioning the point of a Singleton. While a Singleton
design pattern mandates that all objects representing a Singleton must share
the same identity (point to the same instance of a class), the Borg pattern
allows all representations to have unique identities (instances) while ensuring that
they all share the same state (all attributes of the instances point to the same
dictionary).
Many Python developers consider the Singleton to be an anti-pattern (If all
representations are to point to the same instance, why not just use a class-less
module with functions and variables?). The Borg pattern solves this problem by
allowing for a shared state while simultaenously allowing for meaningful inheritance
and preservation of object identities.
"""
class Borg:
"""Any children of this Borg class will share its state but
NOT its identity."""
_shared_state = {}
def __init__(self):
"""All attributes of an instance of a Python class are added by
default to the `self.__dict__` dictionary. The Borg pattern exploits this
by binding the `__dict__` attribute for all child instances to the
`_shared_state` dictionary."""
self.__dict__ = self._shared_state
class ChildBorg(Borg):
def __init__(self, **kwargs):
"""In this example, by calling the Borg's constructor,
`self.__dict__` is binded before its attributes are assigned.
This will ensure the instance has access to all of the `_shared_state`
attributes, and that its attribute assigments will update the shared state."""
# Construct the Borg before setting attributes to bind the shared state.
Borg.__init__(self)
# How attributes are assigned henceforth depends entirely on your needs.
# This example allows the constructor to accept and assign multiple unknown attributes.
for key, value in kwargs.iteritems():
# For a key:value pair of a:1, the next line would equate to `self.a = 1`
setattr(self, key, value)
if __name__ == '__main__':
# Let's imagine our Borg represents a type of video game character.
cb1 = ChildBorg(health=100, attack=15)
# Let's suppose that some in-game event causes all Borgs to become 10% healthier
# and gain an armour worth 20 points.
# Creating a new ChildBorg after the aformenetioned ingame event.
cb2 = ChildBorg(health=110, attack=15, armour=20)
# Tests
print("Do cb1 and cb2 have separate identities?")
print(cb1 is not cb2) # True
print("Do cb1 and cb2 share the same state?")
print("Health: {}".format(cb1.health == cb2.health == 110)) # True
print("Attack: {}".format(cb1.attack == cb2.attack == 15)) # True
print("Armour: {}".format(cb1.armour == cb2.armour == 20)) # True (note how cb1 also has armour)
|
class Solution:
def intToRoman(self, num: int) -> str:
'''
T: O(1) and S: O(1)
'''
int2rom = {1000:'M',
900:'CM',
500:'D',
400:'CD',
100:'C',
90:'XC',
50:'L',
40:'XL',
10:'X',
9:'IX',
5:'V',
4:'IV',
1:'I'}
result = ''
for divisor in int2rom:
carry, num = divmod(num, divisor)
result += carry * int2rom[divisor]
return result
|
"""
One way to serialize a binary tree is to use pre-order traversal.
When we encounter a non-null node, we record the node's value.
If it is a null node, we record using a sentinel value such as #.
_9_
/ \
3 2
/ \ / \
4 1 # 6
/ \ / \ / \
# # # # # #
For example, the above binary tree can be serialized to the string "9,3,4,#,#,1,#,#,2,#,6,#,#"
where # represents a null node.
Given a string of comma separated values, verify whether it is a correct preorder traversal
serialization of a binary tree. Find an algorithm without reconstructing the tree.
Each comma separated value in the string must be either an integer or a character '#' representing null pointer.
You may assume that the input format is always valid,
for example it could never contain two consecutive commas such as "1,,3".
Example 1:
Input: "9,3,4,#,#,1,#,#,2,#,6,#,#"
Output: true
Example 2:
Input: "1,#"
Output: false
Example 3:
Input: "9,#,#,1"
Output: false
SOLUTION:
Binary tree could be considered as a number of slots to fulfill.
At the start there is just one slot available for a number or null node.
Both number and null node take one slot to be placed.
For the null node the story ends up here, whereas the number will add into the tree two slots for the child nodes.
Each child node could be, again, a number or a null.
The idea is straightforward: take the nodes one by one from preorder traversal,
and compute the number of available slots.
If at the end all available slots are used up, the preorder traversal represents the valid serialization.
In the beginning there is one available slot.
Each number or null consumes one slot.
Null node adds no slots, whereas each number adds two slots for the child nodes.
"""
def is_valid_preorder(preorder):
preorder = preorder.split(",")
# CAREFUL: Its 1 initially!
slots = 1
for i in range(len(preorder)):
val = preorder[i]
slots -= 1
# CAREFUL: This is important!
if slots < 0:
return False
if val != "#":
slots += 2
return slots == 0
def main():
preorder = "9,3,4,#,#,1,#,#,2,#,6,#,#"
print(is_valid_preorder(preorder))
preorder = "1,#"
print(is_valid_preorder(preorder))
preorder = "9,#,#,1"
print(is_valid_preorder(preorder))
main()
|
#
# config.py: configuration for semantic segmentation
# (c) Neil Nie, 2017
# All Rights Reserved.
#
batch_size = 8
img_height = 512
img_width = 1024
display_height = 512
display_width = 1024
nb_classes = 34
learning_rate = 1e-4
nb_epoch = 10
|
#
# @lc app=leetcode id=485 lang=python3
#
# [485] Max Consecutive Ones
#
# @lc code=start
class Solution:
def findMaxConsecutiveOnes(self, nums: List[int]) -> int:
res = 0
count = 0
for i in nums:
if i == 0:
count = 0
else:
count += 1
res = max(res, count)
return res
# @lc code=end
|
'''
module for calculating
greatest common divisor (GCD)
and lowest common multiple
(LCM)
'''
def gcd(x: int, y: int):
'''
Calculating GCD of x and y
using Euclid's algorithm
'''
if (x > y):
while (y != 0):
x, y = y, x % y
return x
else:
while (x != 0):
y, x = x, y % x
return y
def lcm(x: int, y: int):
'''
Calculating LCM of x and y
using the formula
LCM * GCD = x * y
'''
result = (x * y) // gcd(x, y)
return result
'''
PyAlgo
Devansh Singh, 2021
'''
|
course = "Python Programming"
message = """
east n west, cats are the best!🐈
"""
print(message)
print(len(course))
print(course[0])
print(course[-1])
print(course[1:4]) # including 1, excluding 4
print(course[3:]) # erases before 3
print(course[:3])
print(course[:]) # copy of the original
|
""" For a string and pattern, count for each pattern the number
of times it appears in the string """
def check_pattern_count(string, pattern):
pattern_count = 0
string_length, pattern_length = len(string), len(pattern)
for i in range(0, string_length - pattern_length - 1):
temp_pattern_extract = string[i : i + pattern_length]
if pattern == temp_pattern_extract:
pattern_count += 1
return pattern_count
if __name__ == "__main__":
"""string = "aybabtu"
pattern = "a"
print(check_pattern_count(string, pattern))"""
string = input("Enter a string to check for patterns : ")
no_of_patterns = int(input())
pattern_count = {}
for _ in range(no_of_patterns):
pattern = input("Enter a pattern to check in the string above : ")
pattern_count[pattern] = check_pattern_count(string, pattern)
print(pattern_count)
|
#!/bin/python3
#I think this needs to run in c
def addTuple(t1, t2):
return [t1i + t2i for t1i, t2i in zip(t1, t2)]
def compareTuple(t1, t2):
return all([t1i <= t2i for t1i, t2i in zip(t1, t2)])
def theHackathon(n, m, a, b, f, s, t):
# Participant code here
people = {}
groups = {}
max_dep = f, s, t
for i in range(n):
inputdata = input().split()
name = inputdata[0]
people[name] = i
dep = [0, 0, 0]
dep[int(inputdata[1]) - 1] = 1
groups[i] = [[name], dep]
def mergeGroups(g1, g2):
if g1 != g2:
group1 = groups[g1]
group2 = groups[g2]
addedTuples = addTuple(group1[1], group2[1])
if(len(group1[0]) + len(group2[0]) <= b and compareTuple(addedTuples, max_dep)):
groups[g1] = [group1[0] + group2[0], addedTuples]
for name in group2[0]:
people[name] = g1
del groups[g2]
for i in range(m):
r1, r2 = input().split()
mergeGroups(people[r1], people[r2])
maxlen = a
namesToPrint = []
for group in groups.values():
glen = len(group[0])
if glen > maxlen:
maxlen = glen
namesToPrint = group[0]
elif glen == maxlen:
namesToPrint += group[0]
if not len(namesToPrint):
print("no groups")
else:
namesToPrint.sort()
for name in namesToPrint:
print(name)
if __name__ == '__main__':
inputdata = input().split()
n = int(inputdata[0])
m = int(inputdata[1])
a = int(inputdata[2])
b = int(inputdata[3])
f = int(inputdata[4])
s = int(inputdata[5])
t = int(inputdata[6])
theHackathon(n, m, a, b, f, s, t)
|
# Mostrar o valor em dólar.
real = float(input('Digite o valor em Real: R$'))
def real_hoje(real):
dol = real / 5.44
return dol
def euro_hoje(real):
euro = real / 6.55
return euro
print('Você consegue comprar {:.2f} euros' .format(euro_hoje(real)))
print('e {:.2f} dólares' .format(real_hoje(real)))
|
# https://www.geeksforgeeks.org/merge-sort/
# merge(arr,l,m,r) is a key process assuming that arr[l..m] and arr[m+1..r] are sorted and merges the sub-arrays into one
# Recursive implementation
# Space complexity is O(n)+O(logn) counting stack frames -> still O(n) in case of arrays
def mergeSort(arr):
# base case, need at least 2 el in arr to divide
if len(arr) > 1:
mid = len(arr) // 2
# Divide to L and R sub-arrays
L = arr[:mid]
R = arr[mid:]
# sort the first and seconds halves
mergeSort(L)
mergeSort(R)
# merge the two sub-arrays
i = j = k = 0
while i < len(L) and j < len(R):
# Merge back into arr
if L[i] < R[j]:
arr[k] = L[i]
i += 1
else:
arr[k] = R[j]
j += 1
k += 1
# check for remaining el
while i < len(L):
arr[k] = L[i]
i += 1
k += 1
while j < len(R):
arr[k] = R[j]
j += 1
k += 1
arr = [12,11,2,4,3,9,5,7,0]
print('before merge sort:', arr)
mergeSort(arr)
print('after merge sort', arr)
|
# list of lists
matrix = [[0, 1, 2, 3, 4], [5, 6, 7, 8, 9]]
# get element from list of lists
x = matrix[0][0]
# slice a list of lists
x = matrix[0][0:2]
# update element in list
matrix[0][0] = -1
# remove element in list
matrix[0].remove(-1)
# get number of lists
x = len(matrix)
|
def finished_hook_for_mp3(d):
if d['status'] == 'finished':
print('다운로드가 완료되었습니다. 컨버팅을 시작합니다.')
def finished_hook_for_mp4(d):
if d['status'] == 'finished':
print('다운로드가 완료되었습니다.')
|
# A little about strings
# Often programmers face a problem that can be solved by
# analogy. You are already familiar with the string data type,
# Now you need to study the relevant section of the
# documentation about strings to solve this problem. In the
# documentation you will find the necessary similar examples.
# Your task is correct the code so that the output would be the
# following:
print(r"It isn`t in the section 'C:\some\name_of_file'")
|
def stringfixer(sentence):
sentence = sentence.split()
symbollst = [".","!","?"]
flag = False
count = 0
final = ""
for elm in sentence:
if count ==0:
elm = elm.capitalize()
count += 1
if flag:
elm = elm.capitalize()
flag = False
for letter in elm:
if letter in symbollst:
flag = True
if elm == "i":
elm = elm.capitalize()
elif "i" in elm:
if len(elm) == 2:
if elm[1] in symbollst:
elm = elm.capitalize()
final += elm + " "
final = final.rstrip()
return final
sentence = input("Enter your string: ")
print(stringfixer(sentence))
|
class Node:
"""
this is the constructor.
"""
def __init__ (self, val = None, next = None):
self.val = val
self.next = next
class LinkedList:
"""
stores reference to head node, and interacts with nodes, but is not a node.
"""
def __init__(self):
self.head = None
def contains(self):
contents = []
node = self.head
while node:
contents.append(node.val)
node = node.next
return contents
def includes(self, val):
node = self.head
while node != None:
if node.val == val:
return True
node = node.next
return False
def insert(self, val):
new_node = Node(val, self.head)
self.head = new_node
def __str__(self):
node = self.head
phrase = []
while node != None:
phrase.append(f'{{ ' + str(node.val) + ' }')
node = node.next
phrase.append("NULL")
return " -> ".join(phrase)
def append(self, val):
new_node = Node(val)
if self.head is None:
self.head = new_node
last = self.head
while last.next:
last = last.next
last.next = new_node
def insert_before(self, val, new_val):
if self.head is None:
return "no list was created"
if val == self.head.val:
new_node = Node(new_val)
new_node.next = self.head
self.head = new_node
return
# have to return of else new value gets added to front of list twice
node = self.head
while node:
if node.next.val == val:
break
node = node.next
if node.next is None:
return "the item you're looking for is not in the list"
else:
new_node = Node(new_val)
new_node.next = node.next
node.next = new_node
def insert_after(self, val, new_val):
node = self.head
while node:
if node.val == val:
break
node = node.next
if node is None:
return "search value is not in list"
else:
new_node = Node(new_val)
new_node.next = node.next
node.next = new_node
def kth_from_end(self, k):
if not self.head:
return "there is no list to search"
if k < 0:
return "you must enter a positive value"
lead = self.head
for i in range(k+1):
if lead == None:
return "k is greater than length of linked list"
lead = lead.next
kth = self.head
while lead:
lead = lead.next
kth = kth.next
return kth.val
def zip_lists(first, second):
a = first.head
zip_a = a.next
b = second.head
zip_b = b.next
while a or b:
b.next = a
a.next = zip_b
a = zip_a
b = zip_b
if a.next != None and b.next != None:
zip_a = zip_a.next
zip_b = zip_b.next
else:
b.next = a
return second
|
test_json = []
test_json.append("""{"log":[
{"user_responses":[
{"description":"test autologging 2
"},
]},
{"autogeneratated":[ {"status":""},
{"files":[
{"name":"./sample/interface_deck_2D_decomp/head/interface_deck_2D_decomp.cc","size":79168,"last_modified":1528904996},
{"name":"./sample/interface_deck_2D_decomp/407/v407_interface_deck_2D_decomp.cc","size":80015,"last_modified":1528904996},
{"name":"./utilities/gtest-vpic.cc","size":500,"last_modified":1528904996},
{"name":"./utilities/restart_remap.cc","size":1796,"last_modified":1528904996},
{"name":"./deck/main.cc","size":3001,"last_modified":1528904996},
{"name":"./deck/wrapper.cc","size":25863,"last_modified":1528904996},
{"name":"./src/material/material.cc","size":2825,"last_modified":1530129259},
{"name":"./src/util/profile/profile.cc","size":1773,"last_modified":1530129259},
{"name":"./src/util/checkpt/checkpt.cc","size":22150,"last_modified":1530129259},
{"name":"./src/util/checkpt/checkpt_io.cc","size":680,"last_modified":1528904996},
{"name":"./src/util/boot.cc","size":1167,"last_modified":1530129259},
{"name":"./src/util/util_base.cc","size":6923,"last_modified":1530129259},
{"name":"./src/util/rng/test/rng.cc","size":13287,"last_modified":1528904996},
{"name":"./src/util/rng/frandn_table.cc","size":7759,"last_modified":1530129259},
{"name":"./src/util/rng/rng.cc","size":17713,"last_modified":1530129259},
{"name":"./src/util/rng/drandn_table.cc","size":30219,"last_modified":1530129259},
{"name":"./src/util/rng/rng_pool.cc","size":1475,"last_modified":1530129259},
{"name":"./src/util/mp/mp.cc","size":2494,"last_modified":1528904996},
{"name":"./src/util/v4/test/v4.cc","size":11628,"last_modified":1528904996},
{"name":"./src/util/pipelines/pipelines_thread.cc","size":19730,"last_modified":1530129259},
{"name":"./src/util/pipelines/pipelines_serial.cc","size":2100,"last_modified":1530129259},
{"name":"./src/vpic/advance.cc","size":8824,"last_modified":1531415602},
{"name":"./src/vpic/diagnostics.cc","size":2261,"last_modified":1528904996},
{"name":"./src/vpic/vpic.cc","size":3605,"last_modified":1528904996},
{"name":"./src/vpic/misc.cc","size":10026,"last_modified":1528904996},
{"name":"./src/vpic/initialize.cc","size":3000,"last_modified":1530129259},
{"name":"./src/vpic/dump.cc","size":27661,"last_modified":1528904996},
{"name":"./src/field_advance/standard/vacuum_energy_f.cc","size":4800,"last_modified":1530129259},
{"name":"./src/field_advance/standard/compute_rms_div_b_err.cc","size":1977,"last_modified":1530129259},
{"name":"./src/field_advance/standard/advance_b.cc","size":5314,"last_modified":1531415601},
{"name":"./src/field_advance/standard/sfa.cc","size":7263,"last_modified":1531415601},
{"name":"./src/field_advance/standard/vacuum_compute_curl_b.cc","size":9562,"last_modified":1528904996},
{"name":"./src/field_advance/standard/vacuum_advance_e.cc","size":11198,"last_modified":1528904996},
{"name":"./src/field_advance/standard/compute_rhob.cc","size":4404,"last_modified":1530129259},
{"name":"./src/field_advance/standard/advance_e.cc","size":12678,"last_modified":1531259114},
{"name":"./src/field_advance/standard/energy_f.cc","size":4575,"last_modified":1530129259},
{"name":"./src/field_advance/standard/vacuum_compute_div_e_err.cc","size":4598,"last_modified":1530129259},
{"name":"./src/field_advance/standard/SFACopier.cc","size":5709,"last_modified":1531173834},
{"name":"./src/field_advance/standard/clean_div_e.cc","size":4207,"last_modified":1530129259},
{"name":"./src/field_advance/standard/remote.cc","size":23843,"last_modified":1531259114},
{"name":"./src/field_advance/standard/compute_div_b_err.cc","size":4871,"last_modified":1528904996},
{"name":"./src/field_advance/standard/clean_div_b.cc","size":7907,"last_modified":1528904996},
{"name":"./src/field_advance/standard/vacuum_clean_div_e.cc","size":4037,"last_modified":1530129259},
{"name":"./src/field_advance/standard/compute_rms_div_e_err.cc","size":4791,"last_modified":1530129259},
{"name":"./src/field_advance/standard/vacuum_compute_rhob.cc","size":4439,"last_modified":1530129259},
{"name":"./src/field_advance/standard/compute_div_e_err.cc","size":4521,"last_modified":1530129259},
{"name":"./src/field_advance/standard/compute_curl_b.cc","size":10347,"last_modified":1528904996},
{"name":"./src/field_advance/standard/local.cc","size":21223,"last_modified":1531415601},
{"name":"./src/field_advance/field_advance.cc","size":2089,"last_modified":1531259111},
{"name":"./src/species_advance/standard/energy_p.cc","size":4421,"last_modified":1528904996},
{"name":"./src/species_advance/standard/sort_p.cc","size":9721,"last_modified":1530129259},
{"name":"./src/species_advance/standard/rho_p.cc","size":7133,"last_modified":1528904996},
{"name":"./src/species_advance/standard/advance_p.cc","size":17585,"last_modified":1528904996},
{"name":"./src/species_advance/standard/uncenter_p.cc","size":5982,"last_modified":1528904996},
{"name":"./src/species_advance/standard/move_p.cc","size":14414,"last_modified":1528904996},
{"name":"./src/species_advance/standard/center_p.cc","size":5891,"last_modified":1528904996},
{"name":"./src/species_advance/standard/hydro_p.cc","size":6464,"last_modified":1530129259},
{"name":"./src/species_advance/species_advance.cc","size":3637,"last_modified":1530129259},
{"name":"./src/grid/partition.cc","size":6164,"last_modified":1530129259},
{"name":"./src/grid/ops.cc","size":7031,"last_modified":1530129259},
{"name":"./src/grid/grid_comm.cc","size":1810,"last_modified":1530129259},
{"name":"./src/grid/grid_structors.cc","size":1183,"last_modified":1530129259},
{"name":"./src/boundary/link.cc","size":2404,"last_modified":1530129259},
{"name":"./src/boundary/absorb_tally.cc","size":2630,"last_modified":1530129259},
{"name":"./src/boundary/maxwellian_reflux.cc","size":8642,"last_modified":1530129259},
{"name":"./src/boundary/boundary_p.cc","size":16088,"last_modified":1528904996},
{"name":"./src/boundary/boundary.cc","size":2281,"last_modified":1530129259},
{"name":"./src/collision/collision.cc","size":2100,"last_modified":1530129259},
{"name":"./src/collision/unary.cc","size":5158,"last_modified":1530129259},
{"name":"./src/collision/langevin.cc","size":4740,"last_modified":1530129259},
{"name":"./src/collision/binary.cc","size":9583,"last_modified":1530129259},
{"name":"./src/collision/hard_sphere.cc","size":17874,"last_modified":1530129259},
{"name":"./src/collision/large_angle_coulomb.cc","size":11081,"last_modified":1530129259},
{"name":"./src/emitter/emitter.cc","size":2366,"last_modified":1530129259},
{"name":"./src/emitter/child_langmuir.cc","size":8682,"last_modified":1530129259},
{"name":"./src/sf_interface/reduce_accumulators.cc","size":6310,"last_modified":1528904996},
{"name":"./src/sf_interface/clear_accumulators.cc","size":1161,"last_modified":1530129259},
{"name":"./src/sf_interface/accumulator_array.cc","size":1680,"last_modified":1530129259},
{"name":"./src/sf_interface/hydro_array.cc","size":7869,"last_modified":1530129259},
{"name":"./src/sf_interface/interpolator_array.cc","size":10078,"last_modified":1528904996},
{"name":"./src/sf_interface/unload_accumulator.cc","size":3507,"last_modified":1528904996},
{"name":"./kokkos/tpls/gtest/gtest/gtest-all.cc","size":354477,"last_modified":1528906780},
{"name":"./interfaces/c/fft_join.c","size":3309,"last_modified":1528904996},
{"name":"./interfaces/c/fft_join_tmp.c","size":3446,"last_modified":1528904996},
{"name":"./interfaces/c/poynting2d.c","size":6280,"last_modified":1528904996},
{"name":"./interfaces/c/data_join2.c","size":22638,"last_modified":1528904996},
{"name":"./interfaces/c/fig10.c","size":4852,"last_modified":1528904996},
{"name":"./interfaces/c/data_join.c","size":22633,"last_modified":1528904996},
{"name":"./interfaces/c/pppp.c","size":11254,"last_modified":1528904996},
{"name":"./interfaces/c/movie_join_bak.c","size":7266,"last_modified":1528904996},
{"name":"./interfaces/c/fig9.c","size":4900,"last_modified":1528904996},
{"name":"./interfaces/c/movie_join_2d.c","size":7170,"last_modified":1528904996},
{"name":"./interfaces/c/movie_join.c","size":16856,"last_modified":1528904996},
{"name":"./build/CMakeFiles/FindOpenMP/OpenMPCheckVersion.c","size":605,"last_modified":1531158566},
{"name":"./build/CMakeFiles/FindOpenMP/OpenMPTryFlag.c","size":93,"last_modified":1531158565},
{"name":"./build/CMakeFiles/3.11.1/CompilerIdC/CMakeCCompilerId.c","size":18988,"last_modified":1531158556},
{"name":"./build/CMakeFiles/feature_tests.c","size":688,"last_modified":1531158558},
{"name":"./utilities/symbols.h","size":1274,"last_modified":1528904996},
{"name":"./src/material/material.h","size":1438,"last_modified":1528904996},
{"name":"./src/util/bitfield.h","size":2961,"last_modified":1528904996},
{"name":"./src/util/swap.h","size":4340,"last_modified":1528904996},
{"name":"./src/util/system.h","size":1880,"last_modified":1528904996},
{"name":"./src/util/io/P2PIOPolicy.h","size":13536,"last_modified":1528904996},
{"name":"./src/util/io/FileIOData.h","size":402,"last_modified":1528904996},
{"name":"./src/util/io/FileIO.h","size":1855,"last_modified":1528904996},
{"name":"./src/util/io/StandardUtilsPolicy.h","size":577,"last_modified":1528904996},
{"name":"./src/util/io/P2PUtilsPolicy.h","size":1218,"last_modified":1528904996},
{"name":"./src/util/io/FileUtils.h","size":778,"last_modified":1528904996},
{"name":"./src/util/io/StandardIOPolicy.h","size":3305,"last_modified":1528904996},
{"name":"./src/util/profile/profile.h","size":3083,"last_modified":1528904996},
{"name":"./src/util/util_base.h","size":14693,"last_modified":1528904996},
{"name":"./src/util/checkpt/checkpt.h","size":13238,"last_modified":1528904996},
{"name":"./src/util/checkpt/checkpt_io.h","size":1709,"last_modified":1528904996},
{"name":"./src/util/checkpt/checkpt_private.h","size":628,"last_modified":1528904996},
{"name":"./src/util/util.h","size":1060,"last_modified":1528904996},
{"name":"./src/util/rng/rng.h","size":9313,"last_modified":1528904996},
{"name":"./src/util/rng/frandn_table.h","size":312,"last_modified":1528904996},
{"name":"./src/util/rng/rng_private.h","size":11345,"last_modified":1528904996},
{"name":"./src/util/rng/drandn_table.h","size":320,"last_modified":1528904996},
{"name":"./src/util/mp/RelayPolicy.h","size":12301,"last_modified":1528904996},
{"name":"./src/util/mp/mp.h","size":3441,"last_modified":1528904996},
{"name":"./src/util/mp/DMPPolicy.h","size":10437,"last_modified":1528904996},
{"name":"./src/util/mp/MPWrapper.h","size":540,"last_modified":1528904996},
{"name":"./src/util/v4/v4_sse.h","size":33491,"last_modified":1528904996},
{"name":"./src/util/v4/v4_portable.h","size":33860,"last_modified":1528904996},
{"name":"./src/util/v4/v4_altivec.h","size":42173,"last_modified":1528904996},
{"name":"./src/util/v4/v4.h","size":343,"last_modified":1528904996},
{"name":"./src/util/checksum.h","size":1125,"last_modified":1528904996},
{"name":"./src/util/pipelines/pipelines.h","size":3872,"last_modified":1528904996},
{"name":"./src/vpic/dumpmacros.h","size":8876,"last_modified":1528904996},
{"name":"./src/vpic/vpic_unit_deck.h","size":457,"last_modified":1528904996},
{"name":"./src/vpic/kokkos_helpers.h","size":4833,"last_modified":1531415602},
{"name":"./src/vpic/vpic.h","size":22550,"last_modified":1529966965},
{"name":"./src/field_advance/standard/sfa_private.h","size":14239,"last_modified":1531415602},
{"name":"./src/field_advance/field_advance_private.h","size":545,"last_modified":1531166380},
{"name":"./src/field_advance/field_advance.h","size":10219,"last_modified":1531259114},
{"name":"./src/species_advance/standard/spa_private.h","size":5627,"last_modified":1528904996},
{"name":"./src/species_advance/species_advance.h","size":7654,"last_modified":1531415602},
{"name":"./src/grid/grid.h","size":14277,"last_modified":1528904996},
{"name":"./src/boundary/boundary.h","size":1516,"last_modified":1528904996},
{"name":"./src/boundary/boundary_private.h","size":2437,"last_modified":1528904996},
{"name":"./src/collision/collision_private.h","size":1469,"last_modified":1528904996},
{"name":"./src/collision/collision.h","size":12961,"last_modified":1528904996},
{"name":"./src/emitter/emitter_private.h","size":1115,"last_modified":1528904996},
{"name":"./src/emitter/emitter.h","size":2906,"last_modified":1528904996},
{"name":"./src/sf_interface/sf_interface.h","size":5787,"last_modified":1528904996},
{"name":"./src/sf_interface/sf_interface_private.h","size":2480,"last_modified":1528904996},
{"name":"./kokkos/example/md_skeleton/system.h","size":2718,"last_modified":1528906780},
{"name":"./kokkos/example/md_skeleton/types.h","size":5086,"last_modified":1528906780},
{"name":"./kokkos/core/unit_test/config/results/HSW_Qthreads_KokkosCore_config.h","size":630,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Pascal61_ROCm_KokkosCore_config.h","size":571,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Kepler35_ROCm_KokkosCore_config.h","size":571,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Maxwell53_Qthreads_KokkosCore_config.h","size":544,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/ARMv81_Pthread_KokkosCore_config.h","size":572,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/BDW_OpenMP_KokkosCore_config.h","size":682,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/WSM_Serial_KokkosCore_config.h","size":629,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Pascal61_Serial_KokkosCore_config.h","size":542,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/SKX_OpenMP_KokkosCore_config.h","size":688,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/SKX_Cuda_KokkosCore_config.h","size":715,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Kepler37_Serial_KokkosCore_config.h","size":542,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/ARMv80_Qthreads_KokkosCore_config.h","size":573,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Power9_OpenMP_KokkosCore_config.h","size":633,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Maxwell53_Pthread_KokkosCore_config.h","size":543,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/ARMv81_OpenMP_KokkosCore_config.h","size":571,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/AMDAVX_ROCm_KokkosCore_config.h","size":597,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Kepler35_OpenMP_KokkosCore_config.h","size":542,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Maxwell50_Qthreads_KokkosCore_config.h","size":544,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Pascal60_Pthread_KokkosCore_config.h","size":543,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Kepler30_ROCm_KokkosCore_config.h","size":571,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Power7_OpenMP_KokkosCore_config.h","size":633,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Maxwell50_Serial_KokkosCore_config.h","size":542,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Power9_Qthreads_KokkosCore_config.h","size":635,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/KNC_Cuda_KokkosCore_config.h","size":651,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/BGQ_ROCm_KokkosCore_config.h","size":571,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/BDW_Qthreads_KokkosCore_config.h","size":684,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/AMDAVX_Qthreads_KokkosCore_config.h","size":570,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Power8_Qthreads_KokkosCore_config.h","size":635,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Maxwell53_Cuda_KokkosCore_config.h","size":631,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Kepler30_Serial_KokkosCore_config.h","size":542,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/KNC_ROCm_KokkosCore_config.h","size":653,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/SKX_Pthread_KokkosCore_config.h","size":689,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/AMDAVX_Cuda_KokkosCore_config.h","size":595,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/ARMv80_ROCm_KokkosCore_config.h","size":600,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/BGQ_Qthreads_KokkosCore_config.h","size":544,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Maxwell_Cuda_KokkosCore_config.h","size":631,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/ARMv80_Pthread_KokkosCore_config.h","size":572,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/BDW_ROCm_KokkosCore_config.h","size":711,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Kepler_OpenMP_KokkosCore_config.h","size":542,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Kepler37_Qthreads_KokkosCore_config.h","size":544,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Kepler30_Qthreads_KokkosCore_config.h","size":544,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Kepler_ROCm_KokkosCore_config.h","size":571,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Maxwell_Serial_KokkosCore_config.h","size":542,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Maxwell52_ROCm_KokkosCore_config.h","size":571,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/BDW_Serial_KokkosCore_config.h","size":682,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Pascal60_ROCm_KokkosCore_config.h","size":571,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Kepler_Cuda_KokkosCore_config.h","size":629,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/WSM_Cuda_KokkosCore_config.h","size":656,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/AMDAVX_Serial_KokkosCore_config.h","size":568,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/None_Serial_KokkosCore_config.h","size":542,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Pascal60_OpenMP_KokkosCore_config.h","size":542,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Maxwell52_Serial_KokkosCore_config.h","size":542,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/HSW_Pthread_KokkosCore_config.h","size":629,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Power9_ROCm_KokkosCore_config.h","size":662,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/KNC_Pthread_KokkosCore_config.h","size":625,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/ARMv8-ThunderX_Pthread_KokkosCore_config.h","size":609,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/KNC_OpenMP_KokkosCore_config.h","size":624,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Maxwell_ROCm_KokkosCore_config.h","size":571,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Maxwell52_Pthread_KokkosCore_config.h","size":543,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/KNL_Pthread_KokkosCore_config.h","size":634,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Pascal60_Serial_KokkosCore_config.h","size":542,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Power7_Serial_KokkosCore_config.h","size":633,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Maxwell53_OpenMP_KokkosCore_config.h","size":542,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Kepler37_OpenMP_KokkosCore_config.h","size":542,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Power7_ROCm_KokkosCore_config.h","size":662,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Power7_Pthread_KokkosCore_config.h","size":634,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/None_Qthreads_KokkosCore_config.h","size":544,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/SNB_Serial_KokkosCore_config.h","size":627,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Maxwell52_OpenMP_KokkosCore_config.h","size":542,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Power7_Qthreads_KokkosCore_config.h","size":635,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/WSM_OpenMP_KokkosCore_config.h","size":629,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/ARMv80_Serial_KokkosCore_config.h","size":571,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Power8_Serial_KokkosCore_config.h","size":633,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/ARMv81_ROCm_KokkosCore_config.h","size":600,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/ARMv81_Qthreads_KokkosCore_config.h","size":573,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/KNC_Qthreads_KokkosCore_config.h","size":626,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/SKX_Serial_KokkosCore_config.h","size":688,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/HSW_Serial_KokkosCore_config.h","size":628,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Maxwell50_Pthread_KokkosCore_config.h","size":543,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Pascal61_Pthread_KokkosCore_config.h","size":543,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Power8_Pthread_KokkosCore_config.h","size":634,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/None_Cuda_KokkosCore_config.h","size":569,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Maxwell52_Cuda_KokkosCore_config.h","size":631,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/SKX_Qthreads_KokkosCore_config.h","size":690,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Pascal61_OpenMP_KokkosCore_config.h","size":542,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Kepler35_Cuda_KokkosCore_config.h","size":629,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Pascal60_Cuda_KokkosCore_config.h","size":629,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/HSW_Cuda_KokkosCore_config.h","size":655,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/SKX_ROCm_KokkosCore_config.h","size":717,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/SNB_Pthread_KokkosCore_config.h","size":628,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Kepler_Pthread_KokkosCore_config.h","size":543,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/AMDAVX_OpenMP_KokkosCore_config.h","size":568,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Pascal60_Qthreads_KokkosCore_config.h","size":544,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Maxwell50_Cuda_KokkosCore_config.h","size":631,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/AMDAVX_Pthread_KokkosCore_config.h","size":569,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/WSM_ROCm_KokkosCore_config.h","size":658,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Maxwell_OpenMP_KokkosCore_config.h","size":542,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/BGQ_Serial_KokkosCore_config.h","size":542,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Kepler_Serial_KokkosCore_config.h","size":542,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/BGQ_Pthread_KokkosCore_config.h","size":543,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Kepler32_Pthread_KokkosCore_config.h","size":543,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Maxwell53_ROCm_KokkosCore_config.h","size":571,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Power9_Serial_KokkosCore_config.h","size":633,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Maxwell_Qthreads_KokkosCore_config.h","size":544,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/ARMv8-ThunderX_Serial_KokkosCore_config.h","size":608,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/ARMv80_Cuda_KokkosCore_config.h","size":598,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/BDW_Pthread_KokkosCore_config.h","size":683,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/ARMv8-ThunderX_ROCm_KokkosCore_config.h","size":637,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Kepler35_Qthreads_KokkosCore_config.h","size":544,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Maxwell_Pthread_KokkosCore_config.h","size":543,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Kepler37_Pthread_KokkosCore_config.h","size":543,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Kepler30_Cuda_KokkosCore_config.h","size":629,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Kepler32_Cuda_KokkosCore_config.h","size":629,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Kepler32_OpenMP_KokkosCore_config.h","size":542,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/BDW_Cuda_KokkosCore_config.h","size":709,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Kepler35_Serial_KokkosCore_config.h","size":542,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/ARMv8-ThunderX_Cuda_KokkosCore_config.h","size":635,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Kepler30_Pthread_KokkosCore_config.h","size":543,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Kepler37_ROCm_KokkosCore_config.h","size":571,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Power8_ROCm_KokkosCore_config.h","size":662,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/WSM_Pthread_KokkosCore_config.h","size":630,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/ARMv81_Cuda_KokkosCore_config.h","size":598,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/SNB_Qthreads_KokkosCore_config.h","size":629,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/ARMv8-ThunderX_Qthreads_KokkosCore_config.h","size":610,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/SNB_OpenMP_KokkosCore_config.h","size":627,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Kepler37_Cuda_KokkosCore_config.h","size":629,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/SNB_ROCm_KokkosCore_config.h","size":656,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/BGQ_OpenMP_KokkosCore_config.h","size":542,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Kepler35_Pthread_KokkosCore_config.h","size":543,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/ARMv80_OpenMP_KokkosCore_config.h","size":571,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Maxwell50_ROCm_KokkosCore_config.h","size":571,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/None_OpenMP_KokkosCore_config.h","size":542,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Power8_OpenMP_KokkosCore_config.h","size":633,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Pascal61_Qthreads_KokkosCore_config.h","size":544,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Maxwell52_Qthreads_KokkosCore_config.h","size":544,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/SNB_Cuda_KokkosCore_config.h","size":654,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/KNL_Qthreads_KokkosCore_config.h","size":635,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/KNL_ROCm_KokkosCore_config.h","size":662,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Power9_Pthread_KokkosCore_config.h","size":634,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/None_Pthread_KokkosCore_config.h","size":543,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Kepler32_ROCm_KokkosCore_config.h","size":571,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Maxwell53_Serial_KokkosCore_config.h","size":542,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/KNL_Cuda_KokkosCore_config.h","size":660,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Maxwell50_OpenMP_KokkosCore_config.h","size":542,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/None_ROCm_KokkosCore_config.h","size":571,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Power7_Cuda_KokkosCore_config.h","size":660,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/ARMv81_Serial_KokkosCore_config.h","size":571,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/KNL_OpenMP_KokkosCore_config.h","size":633,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Kepler32_Qthreads_KokkosCore_config.h","size":544,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/HSW_OpenMP_KokkosCore_config.h","size":628,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Kepler_Qthreads_KokkosCore_config.h","size":544,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/KNC_Serial_KokkosCore_config.h","size":624,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/ARMv8-ThunderX_OpenMP_KokkosCore_config.h","size":608,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Pascal61_Cuda_KokkosCore_config.h","size":629,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Kepler32_Serial_KokkosCore_config.h","size":542,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/WSM_Qthreads_KokkosCore_config.h","size":631,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Power8_Cuda_KokkosCore_config.h","size":660,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Kepler30_OpenMP_KokkosCore_config.h","size":542,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/HSW_ROCm_KokkosCore_config.h","size":657,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/KNL_Serial_KokkosCore_config.h","size":633,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Power9_Cuda_KokkosCore_config.h","size":660,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/BGQ_Cuda_KokkosCore_config.h","size":569,"last_modified":1528906778},
{"name":"./kokkos/tpls/gtest/gtest/gtest.h","size":830614,"last_modified":1528906780},
{"name":"./build/kokkos/KokkosCore_config.h","size":634,"last_modified":1531158567},
{"name":"./kokkos/example/cmake_build/foo.f","size":108,"last_modified":1528906780}
]},
{"git_info":[
{"commit_hash":"24e948133901e1e158d7485d9035fea131c4e2f2"},
{"branch":"test"}
]}
]}
]}""")
test_json.append("""{"user_responses":
{"description":"Threadsafe advance_b
"},
{"time_categories":
{"planning":
{"time_spent":1.000000}, {"difficulty":6}
},
{"coding":
{"time_spent":4.000000}, {"difficulty":5}
},
{"refactoring":
{"time_spent":0.000000}, {"difficulty":0}
},
{"debugging":
{"time_spent":2.000000}, {"difficulty":5}
},
{"optimising":
{"time_spent":0.000000}, {"difficulty":0}
}
} {"tags":
{"MPI":false},
{"OpenMP":false},
{"Cuda":false},
{"Kokkos":true},
{"domain specific work":false}
},
{"NASA-TLX":
{"mental_demand":5}, {"temporal_demand":5}, {"performance":4}, {"effort":6}, {"frustration":6} }}
{"status":""}{"files":
{"name":"./sample/interface_deck_2D_decomp/head/interface_deck_2D_decomp.cc","size":79168,"last_modified":1528842309}{"name":"./sample/interface_deck_2D_decomp/407/v407_interface_deck_2D_decomp.cc","size":80015,"last_modified":1528842309}{"name":"./utilities/symbols.h","size":1274,"last_modified":1528842309}{"name":"./utilities/gtest-vpic.cc","size":500,"last_modified":1528842309}{"name":"./utilities/restart_remap.cc","size":1796,"last_modified":1528842309}{"name":"./deck/main.cc","size":3001,"last_modified":1528842308}{"name":"./deck/wrapper.cc","size":25863,"last_modified":1528842308}{"name":"./src/material/material.h","size":1438,"last_modified":1528842309}{"name":"./src/material/material.cc","size":2825,"last_modified":1528842309}{"name":"./src/util/bitfield.h","size":2961,"last_modified":1528842309}{"name":"./src/util/swap.h","size":4340,"last_modified":1528842309}{"name":"./src/util/system.h","size":1880,"last_modified":1528842309}{"name":"./src/util/io/P2PIOPolicy.h","size":13536,"last_modified":1528842309}{"name":"./src/util/io/FileIOData.h","size":402,"last_modified":1528842309}{"name":"./src/util/io/FileIO.h","size":1855,"last_modified":1528842309}{"name":"./src/util/io/StandardUtilsPolicy.h","size":577,"last_modified":1528842309}{"name":"./src/util/io/P2PUtilsPolicy.h","size":1218,"last_modified":1528842309}{"name":"./src/util/io/FileUtils.h","size":778,"last_modified":1528842309}{"name":"./src/util/io/StandardIOPolicy.h","size":3305,"last_modified":1528842309}{"name":"./src/util/profile/profile.cc","size":1773,"last_modified":1528842309}{"name":"./src/util/profile/profile.h","size":3083,"last_modified":1528842309}{"name":"./src/util/util_base.h","size":14693,"last_modified":1528842309}{"name":"./src/util/checkpt/checkpt.cc","size":22150,"last_modified":1528842309}{"name":"./src/util/checkpt/checkpt.h","size":13238,"last_modified":1528842309}{"name":"./src/util/checkpt/checkpt_io.cc","size":680,"last_modified":1528842309}{"name":"./src/util/checkpt/checkpt_io.h","size":1709,"last_modified":1528842309}{"name":"./src/util/checkpt/checkpt_private.h","size":628,"last_modified":1528842309}{"name":"./src/util/util.h","size":1060,"last_modified":1528842309}{"name":"./src/util/boot.cc","size":1167,"last_modified":1528842309}{"name":"./src/util/util_base.cc","size":6923,"last_modified":1529684156}{"name":"./src/util/rng/rng.h","size":9313,"last_modified":1528842309}{"name":"./src/util/rng/frandn_table.h","size":312,"last_modified":1528842309}{"name":"./src/util/rng/test/rng.cc","size":13287,"last_modified":1528842309}{"name":"./src/util/rng/rng_private.h","size":11345,"last_modified":1528842309}{"name":"./src/util/rng/frandn_table.cc","size":7759,"last_modified":1528842309}{"name":"./src/util/rng/rng.cc","size":17713,"last_modified":1528842309}{"name":"./src/util/rng/drandn_table.cc","size":30219,"last_modified":1528842309}{"name":"./src/util/rng/rng_pool.cc","size":1475,"last_modified":1528842309}{"name":"./src/util/rng/drandn_table.h","size":320,"last_modified":1528842309}{"name":"./src/util/mp/RelayPolicy.h","size":12301,"last_modified":1528842309}{"name":"./src/util/mp/mp.cc","size":2494,"last_modified":1528842309}{"name":"./src/util/mp/mp.h","size":3441,"last_modified":1528842309}{"name":"./src/util/mp/DMPPolicy.h","size":10437,"last_modified":1528842309}{"name":"./src/util/mp/MPWrapper.h","size":540,"last_modified":1528842309}{"name":"./src/util/v4/v4_sse.h","size":33491,"last_modified":1528842309}{"name":"./src/util/v4/test/v4.cc","size":11628,"last_modified":1528842309}{"name":"./src/util/v4/v4_portable.h","size":33860,"last_modified":1528842309}{"name":"./src/util/v4/v4_altivec.h","size":42173,"last_modified":1528842309}{"name":"./src/util/v4/v4.h","size":343,"last_modified":1528842309}{"name":"./src/util/checksum.h","size":1125,"last_modified":1528842309}{"name":"./src/util/pipelines/pipelines_thread.cc","size":19730,"last_modified":1529684049}{"name":"./src/util/pipelines/pipelines_serial.cc","size":2100,"last_modified":1528842309}{"name":"./src/util/pipelines/pipelines.h","size":3872,"last_modified":1528842309}{"name":"./src/vpic/dumpmacros.h","size":8876,"last_modified":1528842309}{"name":"./src/vpic/advance.cc","size":9176,"last_modified":1530308270}{"name":"./src/vpic/diagnostics.cc","size":2261,"last_modified":1528842309}{"name":"./src/vpic/vpic.cc","size":3605,"last_modified":1528842309}{"name":"./src/vpic/vpic_unit_deck.h","size":457,"last_modified":1528842309}{"name":"./src/vpic/kokkos_helpers.h","size":6363,"last_modified":1530566179}{"name":"./src/vpic/vpic.h","size":22550,"last_modified":1529939504}{"name":"./src/vpic/misc.cc","size":10026,"last_modified":1528842309}{"name":"./src/vpic/initialize.cc","size":3000,"last_modified":1529438026}{"name":"./src/vpic/dump.cc","size":27661,"last_modified":1528842309}{"name":"./src/field_advance/standard/vacuum_energy_f.cc","size":4800,"last_modified":1528842309}{"name":"./src/field_advance/standard/compute_rms_div_b_err.cc","size":1977,"last_modified":1528842309}{"name":"./src/field_advance/standard/advance_b.cc","size":5157,"last_modified":1530574166}{"name":"./src/field_advance/standard/sfa.cc","size":7292,"last_modified":1530308270}{"name":"./src/field_advance/standard/vacuum_compute_curl_b.cc","size":9562,"last_modified":1528842309}{"name":"./src/field_advance/standard/vacuum_advance_e.cc","size":11198,"last_modified":1528842309}{"name":"./src/field_advance/standard/compute_rhob.cc","size":4404,"last_modified":1528842309}{"name":"./src/field_advance/standard/advance_e.cc","size":12678,"last_modified":1528842309}{"name":"./src/field_advance/standard/energy_f.cc","size":4575,"last_modified":1528842309}{"name":"./src/field_advance/standard/vacuum_compute_div_e_err.cc","size":4598,"last_modified":1528842309}{"name":"./src/field_advance/standard/clean_div_e.cc","size":4207,"last_modified":1528842309}{"name":"./src/field_advance/standard/remote.cc","size":23843,"last_modified":1528842309}{"name":"./src/field_advance/standard/compute_div_b_err.cc","size":4871,"last_modified":1528842309}{"name":"./src/field_advance/standard/clean_div_b.cc","size":7907,"last_modified":1528842309}{"name":"./src/field_advance/standard/vacuum_clean_div_e.cc","size":4037,"last_modified":1528842309}{"name":"./src/field_advance/standard/compute_rms_div_e_err.cc","size":4791,"last_modified":1528842309}{"name":"./src/field_advance/standard/vacuum_compute_rhob.cc","size":4439,"last_modified":1528842309}{"name":"./src/field_advance/standard/compute_div_e_err.cc","size":4521,"last_modified":1528842309}{"name":"./src/field_advance/standard/compute_curl_b.cc","size":10347,"last_modified":1528842309}{"name":"./src/field_advance/standard/local.cc","size":24664,"last_modified":1530204456}{"name":"./src/field_advance/standard/sfa_private.h","size":14413,"last_modified":1530308270}{"name":"./src/field_advance/field_advance_private.h","size":545,"last_modified":1528842309}{"name":"./src/field_advance/field_advance.cc","size":2089,"last_modified":1528842309}{"name":"./src/field_advance/field_advance.h","size":10293,"last_modified":1530308270}{"name":"./src/species_advance/standard/energy_p.cc","size":4421,"last_modified":1528842309}{"name":"./src/species_advance/standard/sort_p.cc","size":9721,"last_modified":1528842309}{"name":"./src/species_advance/standard/rho_p.cc","size":7133,"last_modified":1528842309}{"name":"./src/species_advance/standard/advance_p.cc","size":17585,"last_modified":1528842309}{"name":"./src/species_advance/standard/uncenter_p.cc","size":5982,"last_modified":1528842309}{"name":"./src/species_advance/standard/move_p.cc","size":14414,"last_modified":1528842309}{"name":"./src/species_advance/standard/center_p.cc","size":5891,"last_modified":1528842309}{"name":"./src/species_advance/standard/hydro_p.cc","size":6464,"last_modified":1528842309}{"name":"./src/species_advance/standard/spa_private.h","size":5627,"last_modified":1528842309}{"name":"./src/species_advance/species_advance.cc","size":3637,"last_modified":1528842309}{"name":"./src/species_advance/species_advance.h","size":7654,"last_modified":1528842309}{"name":"./src/grid/grid.h","size":14277,"last_modified":1529961841}{"name":"./src/grid/partition.cc","size":6164,"last_modified":1528842309}{"name":"./src/grid/ops.cc","size":7031,"last_modified":1528842309}{"name":"./src/grid/grid_comm.cc","size":1810,"last_modified":1528842309}{"name":"./src/grid/grid_structors.cc","size":1183,"last_modified":1528842309}{"name":"./src/boundary/link.cc","size":2404,"last_modified":1528842309}{"name":"./src/boundary/absorb_tally.cc","size":2630,"last_modified":1528842309}{"name":"./src/boundary/boundary.h","size":1516,"last_modified":1528842309}{"name":"./src/boundary/maxwellian_reflux.cc","size":8642,"last_modified":1528842309}{"name":"./src/boundary/boundary_p.cc","size":16088,"last_modified":1528842309}{"name":"./src/boundary/boundary_private.h","size":2437,"last_modified":1528842309}{"name":"./src/boundary/boundary.cc","size":2281,"last_modified":1528842309}{"name":"./src/collision/collision.cc","size":2100,"last_modified":1528842309}{"name":"./src/collision/unary.cc","size":5158,"last_modified":1528842309}{"name":"./src/collision/langevin.cc","size":4740,"last_modified":1528842309}{"name":"./src/collision/collision_private.h","size":1469,"last_modified":1528842309}{"name":"./src/collision/binary.cc","size":9583,"last_modified":1528842309}{"name":"./src/collision/hard_sphere.cc","size":17874,"last_modified":1528842309}{"name":"./src/collision/large_angle_coulomb.cc","size":11081,"last_modified":1528842309}{"name":"./src/collision/collision.h","size":12961,"last_modified":1528842309}{"name":"./src/emitter/emitter.cc","size":2366,"last_modified":1528842309}{"name":"./src/emitter/child_langmuir.cc","size":8682,"last_modified":1528842309}{"name":"./src/emitter/emitter_private.h","size":1115,"last_modified":1528842309}{"name":"./src/emitter/emitter.h","size":2906,"last_modified":1528842309}{"name":"./src/sf_interface/reduce_accumulators.cc","size":6310,"last_modified":1528842309}{"name":"./src/sf_interface/clear_accumulators.cc","size":1161,"last_modified":1528842309}{"name":"./src/sf_interface/sf_interface.h","size":5787,"last_modified":1528842309}{"name":"./src/sf_interface/sf_interface_private.h","size":2480,"last_modified":1528842309}{"name":"./src/sf_interface/accumulator_array.cc","size":1680,"last_modified":1528842309}{"name":"./src/sf_interface/hydro_array.cc","size":7869,"last_modified":1528842309}{"name":"./src/sf_interface/interpolator_array.cc","size":10078,"last_modified":1528842309}{"name":"./src/sf_interface/unload_accumulator.cc","size":3507,"last_modified":1528842309}{"name":"./kokkos/containers/performance_tests/TestOpenMP.cpp","size":4713,"last_modified":1529436737}{"name":"./kokkos/containers/performance_tests/TestCuda.cpp","size":3506,"last_modified":1529436737}{"name":"./kokkos/containers/performance_tests/TestMain.cpp","size":2145,"last_modified":1529436737}{"name":"./kokkos/containers/performance_tests/TestThreads.cpp","size":4574,"last_modified":1529436737}{"name":"./kokkos/containers/performance_tests/TestROCm.cpp","size":3732,"last_modified":1529436737}{"name":"./kokkos/containers/unit_tests/serial/TestSerial_DynRankViewAPI_rank67.cpp","size":2044,"last_modified":1529436737}{"name":"./kokkos/containers/unit_tests/serial/TestSerial_DynRankViewAPI_generic.cpp","size":2045,"last_modified":1529436737}{"name":"./kokkos/containers/unit_tests/serial/TestSerial_BitSet.cpp","size":2033,"last_modified":1529436737}{"name":"./kokkos/containers/unit_tests/serial/TestSerial_UnorderedMap.cpp","size":2039,"last_modified":1529436737}{"name":"./kokkos/containers/unit_tests/serial/TestSerial_Vector.cpp","size":2033,"last_modified":1529436737}{"name":"./kokkos/containers/unit_tests/serial/TestSerial_ScatterView.cpp","size":2038,"last_modified":1529436737}{"name":"./kokkos/containers/unit_tests/serial/TestSerial_DualView.cpp","size":2035,"last_modified":1529436737}{"name":"./kokkos/containers/unit_tests/serial/TestSerial_StaticCrsGraph.cpp","size":2041,"last_modified":1529436737}{"name":"./kokkos/containers/unit_tests/serial/TestSerial_DynRankViewAPI_rank12345.cpp","size":2047,"last_modified":1529436737}{"name":"./kokkos/containers/unit_tests/serial/TestSerial_ErrorReporter.cpp","size":2040,"last_modified":1529436737}{"name":"./kokkos/containers/unit_tests/serial/TestSerial_ViewCtorPropEmbeddedDim.cpp","size":2050,"last_modified":1529436737}{"name":"./kokkos/containers/unit_tests/serial/TestSerial_DynamicView.cpp","size":2038,"last_modified":1529436737}{"name":"./kokkos/containers/unit_tests/rocm/TestROCm_DynRankViewAPI_rank67.cpp","size":2040,"last_modified":1529436737}{"name":"./kokkos/containers/unit_tests/rocm/TestROCm_ErrorReporter.cpp","size":2036,"last_modified":1529436737}{"name":"./kokkos/containers/unit_tests/rocm/TestROCm_UnorderedMap.cpp","size":2035,"last_modified":1529436737}{"name":"./kokkos/containers/unit_tests/rocm/TestROCm_StaticCrsGraph.cpp","size":2037,"last_modified":1529436737}{"name":"./kokkos/containers/unit_tests/rocm/TestROCm_DualView.cpp","size":2031,"last_modified":1529436737}{"name":"./kokkos/containers/unit_tests/rocm/TestROCm_Vector.cpp","size":2029,"last_modified":1529436737}{"name":"./kokkos/containers/unit_tests/rocm/TestROCm_ScatterView.cpp","size":2034,"last_modified":1529436737}{"name":"./kokkos/containers/unit_tests/rocm/TestROCm_DynRankViewAPI_generic.cpp","size":2041,"last_modified":1529436737}{"name":"./kokkos/containers/unit_tests/rocm/TestROCm_BitSet.cpp","size":2029,"last_modified":1529436737}{"name":"./kokkos/containers/unit_tests/rocm/TestROCm_ViewCtorPropEmbeddedDim.cpp","size":2046,"last_modified":1529436737}{"name":"./kokkos/containers/unit_tests/rocm/TestROCm_DynRankViewAPI_rank12345.cpp","size":2043,"last_modified":1529436737}{"name":"./kokkos/containers/unit_tests/rocm/TestROCm_DynamicView.cpp","size":2034,"last_modified":1529436737}{"name":"./kokkos/containers/unit_tests/openmp/TestOpenMP_DynRankViewAPI_rank67.cpp","size":2044,"last_modified":1529436737}{"name":"./kokkos/containers/unit_tests/openmp/TestOpenMP_DynRankViewAPI_generic.cpp","size":2045,"last_modified":1529436737}{"name":"./kokkos/containers/unit_tests/openmp/TestOpenMP_Vector.cpp","size":2033,"last_modified":1529436737}{"name":"./kokkos/containers/unit_tests/openmp/TestOpenMP_DynRankViewAPI_rank12345.cpp","size":2047,"last_modified":1529436737}{"name":"./kokkos/containers/unit_tests/openmp/TestOpenMP_DynamicView.cpp","size":2038,"last_modified":1529436737}{"name":"./kokkos/containers/unit_tests/openmp/TestOpenMP_ScatterView.cpp","size":2038,"last_modified":1529436737}{"name":"./kokkos/containers/unit_tests/openmp/TestOpenMP_UnorderedMap.cpp","size":2039,"last_modified":1529436737}{"name":"./kokkos/containers/unit_tests/openmp/TestOpenMP_DualView.cpp","size":2035,"last_modified":1529436737}{"name":"./kokkos/containers/unit_tests/openmp/TestOpenMP_ErrorReporter.cpp","size":2040,"last_modified":1529436737}{"name":"./kokkos/containers/unit_tests/openmp/TestOpenMP_BitSet.cpp","size":2033,"last_modified":1529436737}{"name":"./kokkos/containers/unit_tests/openmp/TestOpenMP_StaticCrsGraph.cpp","size":2041,"last_modified":1529436737}{"name":"./kokkos/containers/unit_tests/openmp/TestOpenMP_ViewCtorPropEmbeddedDim.cpp","size":2050,"last_modified":1529436737}{"name":"./kokkos/containers/unit_tests/UnitTestMain.cpp","size":2220,"last_modified":1529436737}{"name":"./kokkos/containers/unit_tests/cuda/TestCuda_ErrorReporter.cpp","size":2036,"last_modified":1529436737}{"name":"./kokkos/containers/unit_tests/cuda/TestCuda_ScatterView.cpp","size":2034,"last_modified":1529436737}{"name":"./kokkos/containers/unit_tests/cuda/TestCuda_BitSet.cpp","size":2029,"last_modified":1529436737}{"name":"./kokkos/containers/unit_tests/cuda/TestCuda_DynRankViewAPI_generic.cpp","size":2041,"last_modified":1529436737}{"name":"./kokkos/containers/unit_tests/cuda/TestCuda_DynamicView.cpp","size":2034,"last_modified":1529436737}{"name":"./kokkos/containers/unit_tests/cuda/TestCuda_DynRankViewAPI_rank67.cpp","size":2040,"last_modified":1529436737}{"name":"./kokkos/containers/unit_tests/cuda/TestCuda_UnorderedMap.cpp","size":2035,"last_modified":1529436737}{"name":"./kokkos/containers/unit_tests/cuda/TestCuda_DynRankViewAPI_rank12345.cpp","size":2043,"last_modified":1529436737}{"name":"./kokkos/containers/unit_tests/cuda/TestCuda_StaticCrsGraph.cpp","size":2037,"last_modified":1529436737}{"name":"./kokkos/containers/unit_tests/cuda/TestCuda_ViewCtorPropEmbeddedDim.cpp","size":2046,"last_modified":1529436737}{"name":"./kokkos/containers/unit_tests/cuda/TestCuda_Vector.cpp","size":2029,"last_modified":1529436737}{"name":"./kokkos/containers/unit_tests/cuda/TestCuda_DualView.cpp","size":2031,"last_modified":1529436737}{"name":"./kokkos/containers/unit_tests/threads/TestThreads_DynRankViewAPI_rank12345.cpp","size":2049,"last_modified":1529436737}{"name":"./kokkos/containers/unit_tests/threads/TestThreads_StaticCrsGraph.cpp","size":2043,"last_modified":1529436737}{"name":"./kokkos/containers/unit_tests/threads/TestThreads_DynRankViewAPI_generic.cpp","size":2047,"last_modified":1529436737}{"name":"./kokkos/containers/unit_tests/threads/TestThreads_ErrorReporter.cpp","size":2042,"last_modified":1529436737}{"name":"./kokkos/containers/unit_tests/threads/TestThreads_BitSet.cpp","size":2035,"last_modified":1529436737}{"name":"./kokkos/containers/unit_tests/threads/TestThreads_DualView.cpp","size":2037,"last_modified":1529436737}{"name":"./kokkos/containers/unit_tests/threads/TestThreads_Vector.cpp","size":2035,"last_modified":1529436737}{"name":"./kokkos/containers/unit_tests/threads/TestThreads_UnorderedMap.cpp","size":2041,"last_modified":1529436737}{"name":"./kokkos/containers/unit_tests/threads/TestThreads_DynRankViewAPI_rank67.cpp","size":2046,"last_modified":1529436737}{"name":"./kokkos/containers/unit_tests/threads/TestThreads_DynamicView.cpp","size":2040,"last_modified":1529436737}{"name":"./kokkos/containers/unit_tests/threads/TestThreads_ScatterView.cpp","size":2040,"last_modified":1529436737}{"name":"./kokkos/containers/unit_tests/threads/TestThreads_ViewCtorPropEmbeddedDim.cpp","size":2052,"last_modified":1529436737}{"name":"./kokkos/containers/src/impl/Kokkos_UnorderedMap_impl.cpp","size":4731,"last_modified":1529436737}{"name":"./kokkos/example/md_skeleton/main.cpp","size":5903,"last_modified":1529436749}{"name":"./kokkos/example/md_skeleton/force.cpp","size":5921,"last_modified":1529436749}{"name":"./kokkos/example/md_skeleton/system.h","size":2718,"last_modified":1529436749}{"name":"./kokkos/example/md_skeleton/types.h","size":5086,"last_modified":1529436749}{"name":"./kokkos/example/md_skeleton/neighbor.cpp","size":12180,"last_modified":1529436749}{"name":"./kokkos/example/md_skeleton/setup.cpp","size":7383,"last_modified":1529436749}{"name":"./kokkos/example/query_device/query_device.cpp","size":3093,"last_modified":1529436749}{"name":"./kokkos/example/feint/feint_threads.cpp","size":2495,"last_modified":1529436749}{"name":"./kokkos/example/feint/feint_cuda.cpp","size":2443,"last_modified":1529436749}{"name":"./kokkos/example/feint/feint_openmp.cpp","size":2441,"last_modified":1529436749}{"name":"./kokkos/example/feint/main.cpp","size":2508,"last_modified":1529436749}{"name":"./kokkos/example/feint/feint_rocm.cpp","size":2471,"last_modified":1529436749}{"name":"./kokkos/example/feint/feint_serial.cpp","size":2441,"last_modified":1529436749}{"name":"./kokkos/example/global_2_local_ids/G2L_Main.cpp","size":4735,"last_modified":1529436749}{"name":"./kokkos/example/grow_array/main.cpp","size":3907,"last_modified":1529436749}{"name":"./kokkos/example/fixture/Main.cpp","size":12652,"last_modified":1529436749}{"name":"./kokkos/example/fixture/BoxElemPart.cpp","size":15232,"last_modified":1529436749}{"name":"./kokkos/example/fixture/TestFixture.cpp","size":2371,"last_modified":1529436749}{"name":"./kokkos/example/multi_fem/TestHybridFEM.cpp","size":12150,"last_modified":1529436749}{"name":"./kokkos/example/multi_fem/TestCuda.cpp","size":7491,"last_modified":1529436749}{"name":"./kokkos/example/multi_fem/BoxMeshPartition.cpp","size":13477,"last_modified":1529436749}{"name":"./kokkos/example/multi_fem/TestBoxMeshPartition.cpp","size":6131,"last_modified":1529436749}{"name":"./kokkos/example/multi_fem/ParallelMachine.cpp","size":5449,"last_modified":1529436749}{"name":"./kokkos/example/multi_fem/TestHost.cpp","size":6015,"last_modified":1529436749}{"name":"./kokkos/example/cmake_build/cmake_example.cpp","size":3089,"last_modified":1529436749}{"name":"./kokkos/example/cmake_build/foo.f","size":108,"last_modified":1529436749}{"name":"./kokkos/example/make_buildlink/main.cpp","size":322,"last_modified":1529436749}{"name":"./kokkos/example/fenl/main.cpp","size":12824,"last_modified":1529436749}{"name":"./kokkos/example/fenl/fenl.cpp","size":4460,"last_modified":1529436749}{"name":"./kokkos/example/tutorial/03_simple_view/simple_view.cpp","size":5613,"last_modified":1529436749}{"name":"./kokkos/example/tutorial/launch_bounds/launch_bounds_reduce.cpp","size":5064,"last_modified":1529436750}{"name":"./kokkos/example/tutorial/06_simple_mdrangepolicy/simple_mdrangepolicy.cpp","size":7687,"last_modified":1529436749}{"name":"./kokkos/example/tutorial/02_simple_reduce/simple_reduce.cpp","size":3982,"last_modified":1529436749}{"name":"./kokkos/example/tutorial/01_hello_world_lambda/hello_world_lambda.cpp","size":4854,"last_modified":1529436749}{"name":"./kokkos/example/tutorial/Advanced_Views/05_NVIDIA_UVM/uvm_example.cpp","size":5144,"last_modified":1529436749}{"name":"./kokkos/example/tutorial/Advanced_Views/04_dualviews/dual_view.cpp","size":8665,"last_modified":1529436749}{"name":"./kokkos/example/tutorial/Advanced_Views/01_data_layouts/data_layouts.cpp","size":6779,"last_modified":1529436749}{"name":"./kokkos/example/tutorial/Advanced_Views/02_memory_traits/memory_traits.cpp","size":5598,"last_modified":1529436749}{"name":"./kokkos/example/tutorial/Advanced_Views/03_subviews/subviews.cpp","size":7489,"last_modified":1529436749}{"name":"./kokkos/example/tutorial/Advanced_Views/07_Overlapping_DeepCopy/overlapping_deepcopy.cpp","size":5525,"last_modified":1529436749}{"name":"./kokkos/example/tutorial/03_simple_view_lambda/simple_view_lambda.cpp","size":5265,"last_modified":1529436749}{"name":"./kokkos/example/tutorial/Algorithms/01_random_numbers/random_numbers.cpp","size":6239,"last_modified":1529436749}{"name":"./kokkos/example/tutorial/04_simple_memoryspaces/simple_memoryspaces.cpp","size":4004,"last_modified":1529436749}{"name":"./kokkos/example/tutorial/05_simple_atomics/simple_atomics.cpp","size":5371,"last_modified":1529436749}{"name":"./kokkos/example/tutorial/01_hello_world/hello_world.cpp","size":5481,"last_modified":1529436749}{"name":"./kokkos/example/tutorial/02_simple_reduce_lambda/simple_reduce_lambda.cpp","size":3620,"last_modified":1529436749}{"name":"./kokkos/example/tutorial/Hierarchical_Parallelism/03_vectorization/vectorization.cpp","size":6990,"last_modified":1529436749}{"name":"./kokkos/example/tutorial/Hierarchical_Parallelism/01_thread_teams/thread_teams.cpp","size":4151,"last_modified":1529436749}{"name":"./kokkos/example/tutorial/Hierarchical_Parallelism/01_thread_teams_lambda/thread_teams_lambda.cpp","size":4242,"last_modified":1529436749}{"name":"./kokkos/example/tutorial/Hierarchical_Parallelism/04_team_scan/team_scan.cpp","size":5221,"last_modified":1529436749}{"name":"./kokkos/example/tutorial/Hierarchical_Parallelism/02_nested_parallel_for/nested_parallel_for.cpp","size":4185,"last_modified":1529436749}{"name":"./kokkos/example/sort_array/main.cpp","size":3208,"last_modified":1529436749}{"name":"./kokkos/doc/hardware_identification/query_cuda_arch.cpp","size":627,"last_modified":1529436749}{"name":"./kokkos/algorithms/unit_tests/TestOpenMP.cpp","size":3447,"last_modified":1529436737}{"name":"./kokkos/algorithms/unit_tests/TestCuda.cpp","size":3523,"last_modified":1529436737}{"name":"./kokkos/algorithms/unit_tests/TestSerial.cpp","size":3349,"last_modified":1529436737}{"name":"./kokkos/algorithms/unit_tests/TestThreads.cpp","size":3469,"last_modified":1529436737}{"name":"./kokkos/algorithms/unit_tests/UnitTestMain.cpp","size":2201,"last_modified":1529436737}{"name":"./kokkos/algorithms/unit_tests/TestROCm.cpp","size":3517,"last_modified":1529436737}{"name":"./kokkos/algorithms/src/KokkosAlgorithms_dummy.cpp","size":57,"last_modified":1529436737}{"name":"./kokkos/benchmarks/bytes_and_flops/main.cpp","size":3782,"last_modified":1529436737}{"name":"./kokkos/benchmarks/gather/main.cpp","size":3626,"last_modified":1529436737}{"name":"./kokkos/benchmarks/policy_performance/main.cpp","size":8378,"last_modified":1529436737}{"name":"./kokkos/benchmarks/atomic/main.cpp","size":3725,"last_modified":1529436737}{"name":"./kokkos/core/src/OpenMPTarget/Kokkos_OpenMPTarget_Task.cpp","size":10119,"last_modified":1529436738}{"name":"./kokkos/core/src/OpenMPTarget/Kokkos_OpenMPTarget_Exec.cpp","size":8858,"last_modified":1529436738}{"name":"./kokkos/core/src/OpenMPTarget/Kokkos_OpenMPTargetSpace.cpp","size":11366,"last_modified":1529436738}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int64_t_float_LayoutLeft_Rank8.cpp","size":2454,"last_modified":1529436741}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int_float_LayoutLeft_Rank4.cpp","size":2422,"last_modified":1529436741}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int_int64_t_LayoutStride_Rank3.cpp","size":2434,"last_modified":1529436742}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int_double_LayoutLeft_Rank4.cpp","size":2426,"last_modified":1529436741}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int_float_LayoutStride_Rank8.cpp","size":2446,"last_modified":1529436742}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int_int64_t_LayoutLeft_Rank2.cpp","size":2422,"last_modified":1529436742}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int_int_LayoutRight_Rank1.cpp","size":2406,"last_modified":1529436742}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int64_t_double_LayoutRight_Rank8.cpp","size":2462,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int_int64_t_LayoutLeft_Rank1.cpp","size":2418,"last_modified":1529436742}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int_int_LayoutRight_Rank4.cpp","size":2418,"last_modified":1529436742}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int64_t_int64_t_LayoutRight_Rank5.cpp","size":2454,"last_modified":1529436741}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int64_t_int64_t_LayoutStride_Rank8.cpp","size":2470,"last_modified":1529436741}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int_double_LayoutLeft_Rank3.cpp","size":2422,"last_modified":1529436741}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int64_t_double_LayoutLeft_Rank8.cpp","size":2458,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int_double_LayoutLeft_Rank2.cpp","size":2418,"last_modified":1529436741}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int_int64_t_LayoutStride_Rank5.cpp","size":2442,"last_modified":1529436742}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int64_t_float_LayoutLeft_Rank1.cpp","size":2426,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int_float_LayoutLeft_Rank3.cpp","size":2418,"last_modified":1529436741}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int_double_LayoutStride_Rank4.cpp","size":2434,"last_modified":1529436741}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int_int64_t_LayoutRight_Rank8.cpp","size":2450,"last_modified":1529436742}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int64_t_float_LayoutStride_Rank8.cpp","size":2462,"last_modified":1529436741}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int64_t_int_LayoutLeft_Rank2.cpp","size":2422,"last_modified":1529436741}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int64_t_double_LayoutStride_Rank1.cpp","size":2438,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int64_t_float_LayoutStride_Rank2.cpp","size":2438,"last_modified":1529436741}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int64_t_int_LayoutLeft_Rank8.cpp","size":2446,"last_modified":1529436741}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int64_t_int_LayoutRight_Rank3.cpp","size":2430,"last_modified":1529436741}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int64_t_int64_t_LayoutRight_Rank1.cpp","size":2438,"last_modified":1529436741}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int64_t_float_LayoutRight_Rank3.cpp","size":2438,"last_modified":1529436741}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int64_t_int64_t_LayoutLeft_Rank1.cpp","size":2434,"last_modified":1529436741}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int_int64_t_LayoutRight_Rank2.cpp","size":2426,"last_modified":1529436742}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int_float_LayoutRight_Rank5.cpp","size":2430,"last_modified":1529436742}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int_double_LayoutStride_Rank2.cpp","size":2426,"last_modified":1529436741}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int64_t_int64_t_LayoutLeft_Rank2.cpp","size":2438,"last_modified":1529436741}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int64_t_double_LayoutLeft_Rank3.cpp","size":2438,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int64_t_float_LayoutStride_Rank5.cpp","size":2450,"last_modified":1529436741}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int_int_LayoutStride_Rank2.cpp","size":2414,"last_modified":1529436742}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int64_t_int_LayoutLeft_Rank3.cpp","size":2426,"last_modified":1529436741}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int_int64_t_LayoutRight_Rank3.cpp","size":2430,"last_modified":1529436742}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int64_t_float_LayoutLeft_Rank4.cpp","size":2438,"last_modified":1529436741}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int_float_LayoutStride_Rank4.cpp","size":2430,"last_modified":1529436742}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int_float_LayoutRight_Rank1.cpp","size":2414,"last_modified":1529436742}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int_float_LayoutRight_Rank8.cpp","size":2442,"last_modified":1529436742}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int_int64_t_LayoutStride_Rank4.cpp","size":2438,"last_modified":1529436742}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int_int64_t_LayoutLeft_Rank3.cpp","size":2426,"last_modified":1529436742}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int_double_LayoutRight_Rank3.cpp","size":2426,"last_modified":1529436741}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int_float_LayoutStride_Rank1.cpp","size":2418,"last_modified":1529436742}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int_double_LayoutStride_Rank3.cpp","size":2430,"last_modified":1529436741}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int64_t_float_LayoutRight_Rank5.cpp","size":2446,"last_modified":1529436741}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int64_t_double_LayoutStride_Rank2.cpp","size":2442,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int64_t_int_LayoutLeft_Rank4.cpp","size":2430,"last_modified":1529436741}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int_float_LayoutLeft_Rank5.cpp","size":2426,"last_modified":1529436741}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int_int_LayoutLeft_Rank5.cpp","size":2418,"last_modified":1529436742}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int_int64_t_LayoutLeft_Rank5.cpp","size":2434,"last_modified":1529436742}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int_int64_t_LayoutLeft_Rank4.cpp","size":2430,"last_modified":1529436742}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int64_t_double_LayoutLeft_Rank1.cpp","size":2430,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int64_t_float_LayoutRight_Rank2.cpp","size":2434,"last_modified":1529436741}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int_int_LayoutStride_Rank1.cpp","size":2410,"last_modified":1529436742}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int64_t_float_LayoutRight_Rank4.cpp","size":2442,"last_modified":1529436741}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int64_t_float_LayoutRight_Rank8.cpp","size":2458,"last_modified":1529436741}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int64_t_double_LayoutLeft_Rank5.cpp","size":2446,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int64_t_int64_t_LayoutStride_Rank4.cpp","size":2454,"last_modified":1529436741}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int_int64_t_LayoutStride_Rank8.cpp","size":2454,"last_modified":1529436742}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int64_t_int64_t_LayoutRight_Rank2.cpp","size":2442,"last_modified":1529436741}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int64_t_double_LayoutStride_Rank5.cpp","size":2454,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int_double_LayoutStride_Rank8.cpp","size":2450,"last_modified":1529436741}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int_float_LayoutStride_Rank2.cpp","size":2422,"last_modified":1529436742}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int64_t_double_LayoutLeft_Rank4.cpp","size":2442,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int_float_LayoutLeft_Rank2.cpp","size":2414,"last_modified":1529436741}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int64_t_int64_t_LayoutStride_Rank1.cpp","size":2442,"last_modified":1529436741}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int_float_LayoutStride_Rank5.cpp","size":2434,"last_modified":1529436742}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int_float_LayoutRight_Rank3.cpp","size":2422,"last_modified":1529436742}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int64_t_float_LayoutLeft_Rank3.cpp","size":2434,"last_modified":1529436741}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int_int_LayoutRight_Rank5.cpp","size":2422,"last_modified":1529436742}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int_double_LayoutRight_Rank4.cpp","size":2430,"last_modified":1529436741}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int64_t_float_LayoutStride_Rank3.cpp","size":2442,"last_modified":1529436741}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int64_t_int64_t_LayoutStride_Rank5.cpp","size":2458,"last_modified":1529436741}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int64_t_int64_t_LayoutLeft_Rank3.cpp","size":2442,"last_modified":1529436741}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int_int64_t_LayoutRight_Rank1.cpp","size":2422,"last_modified":1529436742}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int64_t_double_LayoutLeft_Rank2.cpp","size":2434,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int_double_LayoutRight_Rank8.cpp","size":2446,"last_modified":1529436741}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int_double_LayoutRight_Rank1.cpp","size":2418,"last_modified":1529436741}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int_int_LayoutStride_Rank8.cpp","size":2438,"last_modified":1529436742}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int64_t_int64_t_LayoutLeft_Rank8.cpp","size":2462,"last_modified":1529436741}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int_double_LayoutRight_Rank5.cpp","size":2434,"last_modified":1529436741}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int64_t_int_LayoutLeft_Rank1.cpp","size":2418,"last_modified":1529436741}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int_int64_t_LayoutRight_Rank4.cpp","size":2434,"last_modified":1529436742}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int_double_LayoutLeft_Rank8.cpp","size":2442,"last_modified":1529436741}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int_double_LayoutLeft_Rank5.cpp","size":2430,"last_modified":1529436741}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int_int64_t_LayoutRight_Rank5.cpp","size":2438,"last_modified":1529436742}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int64_t_int_LayoutStride_Rank5.cpp","size":2442,"last_modified":1529436741}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int64_t_int_LayoutRight_Rank1.cpp","size":2422,"last_modified":1529436741}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int64_t_double_LayoutRight_Rank3.cpp","size":2442,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int64_t_int64_t_LayoutRight_Rank3.cpp","size":2446,"last_modified":1529436741}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int64_t_double_LayoutRight_Rank2.cpp","size":2438,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int64_t_int64_t_LayoutRight_Rank4.cpp","size":2450,"last_modified":1529436741}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int_int64_t_LayoutStride_Rank1.cpp","size":2426,"last_modified":1529436742}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int64_t_double_LayoutStride_Rank4.cpp","size":2450,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int64_t_double_LayoutRight_Rank5.cpp","size":2450,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int_float_LayoutLeft_Rank1.cpp","size":2410,"last_modified":1529436741}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int_int_LayoutStride_Rank3.cpp","size":2418,"last_modified":1529436742}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int_int_LayoutLeft_Rank3.cpp","size":2410,"last_modified":1529436742}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int64_t_float_LayoutStride_Rank1.cpp","size":2434,"last_modified":1529436741}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int64_t_int_LayoutRight_Rank5.cpp","size":2438,"last_modified":1529436741}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int_float_LayoutStride_Rank3.cpp","size":2426,"last_modified":1529436742}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int64_t_int_LayoutStride_Rank3.cpp","size":2434,"last_modified":1529436741}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int64_t_int_LayoutLeft_Rank5.cpp","size":2434,"last_modified":1529436741}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int64_t_int64_t_LayoutRight_Rank8.cpp","size":2466,"last_modified":1529436741}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int64_t_double_LayoutRight_Rank4.cpp","size":2446,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int64_t_int_LayoutStride_Rank8.cpp","size":2454,"last_modified":1529436741}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int_int_LayoutRight_Rank8.cpp","size":2434,"last_modified":1529436742}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int64_t_int64_t_LayoutStride_Rank2.cpp","size":2446,"last_modified":1529436741}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int64_t_int_LayoutStride_Rank4.cpp","size":2438,"last_modified":1529436741}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int_int_LayoutLeft_Rank1.cpp","size":2402,"last_modified":1529436742}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int_double_LayoutStride_Rank1.cpp","size":2422,"last_modified":1529436741}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int_int_LayoutRight_Rank2.cpp","size":2410,"last_modified":1529436742}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int64_t_int_LayoutRight_Rank8.cpp","size":2450,"last_modified":1529436741}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int_int_LayoutStride_Rank5.cpp","size":2426,"last_modified":1529436742}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int64_t_int64_t_LayoutLeft_Rank5.cpp","size":2450,"last_modified":1529436741}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int64_t_int64_t_LayoutStride_Rank3.cpp","size":2450,"last_modified":1529436741}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int_double_LayoutStride_Rank5.cpp","size":2438,"last_modified":1529436741}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int_int_LayoutLeft_Rank4.cpp","size":2414,"last_modified":1529436742}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int64_t_double_LayoutRight_Rank1.cpp","size":2434,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int_int_LayoutLeft_Rank2.cpp","size":2406,"last_modified":1529436742}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int_int_LayoutLeft_Rank8.cpp","size":2430,"last_modified":1529436742}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int64_t_float_LayoutLeft_Rank2.cpp","size":2430,"last_modified":1529436741}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int64_t_int_LayoutStride_Rank2.cpp","size":2430,"last_modified":1529436741}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int64_t_int_LayoutRight_Rank2.cpp","size":2426,"last_modified":1529436741}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int_float_LayoutRight_Rank2.cpp","size":2418,"last_modified":1529436742}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int_float_LayoutRight_Rank4.cpp","size":2426,"last_modified":1529436742}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int64_t_double_LayoutStride_Rank3.cpp","size":2446,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int_float_LayoutLeft_Rank8.cpp","size":2438,"last_modified":1529436742}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int_double_LayoutLeft_Rank1.cpp","size":2414,"last_modified":1529436741}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int_int_LayoutStride_Rank4.cpp","size":2422,"last_modified":1529436742}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int_int64_t_LayoutStride_Rank2.cpp","size":2430,"last_modified":1529436742}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int64_t_int_LayoutRight_Rank4.cpp","size":2434,"last_modified":1529436741}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int64_t_float_LayoutLeft_Rank5.cpp","size":2442,"last_modified":1529436741}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int_int_LayoutRight_Rank3.cpp","size":2414,"last_modified":1529436742}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int64_t_int_LayoutStride_Rank1.cpp","size":2426,"last_modified":1529436741}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int64_t_int64_t_LayoutLeft_Rank4.cpp","size":2446,"last_modified":1529436741}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int_int64_t_LayoutLeft_Rank8.cpp","size":2446,"last_modified":1529436742}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int64_t_double_LayoutStride_Rank8.cpp","size":2466,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int64_t_float_LayoutRight_Rank1.cpp","size":2430,"last_modified":1529436741}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int_double_LayoutRight_Rank2.cpp","size":2422,"last_modified":1529436741}{"name":"./kokkos/core/src/eti/Serial/Kokkos_Serial_ViewCopyETIInst_int64_t_float_LayoutStride_Rank4.cpp","size":2446,"last_modified":1529436741}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int_int64_t_LayoutLeft_Rank2.cpp","size":2470,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int64_t_double_LayoutLeft_Rank5.cpp","size":2494,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int64_t_int_LayoutLeft_Rank8.cpp","size":2494,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int64_t_int64_t_LayoutRight_Rank3.cpp","size":2494,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int64_t_int_LayoutStride_Rank4.cpp","size":2486,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int64_t_float_LayoutRight_Rank8.cpp","size":2506,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int_int_LayoutRight_Rank2.cpp","size":2458,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int_float_LayoutLeft_Rank8.cpp","size":2486,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int64_t_int_LayoutStride_Rank8.cpp","size":2502,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int64_t_double_LayoutRight_Rank3.cpp","size":2490,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int_float_LayoutLeft_Rank4.cpp","size":2470,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int64_t_int64_t_LayoutRight_Rank8.cpp","size":2514,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int_int_LayoutRight_Rank1.cpp","size":2454,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int64_t_float_LayoutRight_Rank4.cpp","size":2490,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int64_t_float_LayoutStride_Rank5.cpp","size":2498,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int64_t_double_LayoutRight_Rank5.cpp","size":2498,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int64_t_double_LayoutRight_Rank4.cpp","size":2494,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int64_t_int_LayoutRight_Rank8.cpp","size":2498,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int64_t_int64_t_LayoutRight_Rank2.cpp","size":2490,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int_int_LayoutLeft_Rank2.cpp","size":2454,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int64_t_int_LayoutLeft_Rank4.cpp","size":2478,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int_double_LayoutRight_Rank2.cpp","size":2470,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int64_t_float_LayoutStride_Rank4.cpp","size":2494,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int64_t_int64_t_LayoutStride_Rank4.cpp","size":2502,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int_int64_t_LayoutRight_Rank5.cpp","size":2486,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int64_t_int_LayoutStride_Rank3.cpp","size":2482,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int64_t_double_LayoutStride_Rank8.cpp","size":2514,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int_float_LayoutStride_Rank2.cpp","size":2470,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int64_t_int_LayoutRight_Rank1.cpp","size":2470,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int_int_LayoutRight_Rank5.cpp","size":2470,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int64_t_double_LayoutLeft_Rank4.cpp","size":2490,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int_float_LayoutLeft_Rank3.cpp","size":2466,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int64_t_float_LayoutRight_Rank3.cpp","size":2486,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int64_t_double_LayoutLeft_Rank1.cpp","size":2478,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int_int64_t_LayoutRight_Rank1.cpp","size":2470,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int_int64_t_LayoutRight_Rank8.cpp","size":2498,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int64_t_double_LayoutStride_Rank5.cpp","size":2502,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int64_t_float_LayoutLeft_Rank5.cpp","size":2490,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int_float_LayoutStride_Rank1.cpp","size":2466,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int_float_LayoutLeft_Rank2.cpp","size":2462,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int64_t_int_LayoutStride_Rank2.cpp","size":2478,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int64_t_int64_t_LayoutStride_Rank1.cpp","size":2490,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int64_t_int64_t_LayoutRight_Rank4.cpp","size":2498,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int64_t_int64_t_LayoutRight_Rank5.cpp","size":2502,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int_double_LayoutRight_Rank1.cpp","size":2466,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int64_t_int64_t_LayoutStride_Rank3.cpp","size":2498,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int64_t_double_LayoutRight_Rank2.cpp","size":2486,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int_int_LayoutRight_Rank8.cpp","size":2482,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int_float_LayoutLeft_Rank1.cpp","size":2458,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int_double_LayoutStride_Rank4.cpp","size":2482,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int_int_LayoutLeft_Rank8.cpp","size":2478,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int64_t_float_LayoutLeft_Rank8.cpp","size":2502,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int_int_LayoutStride_Rank2.cpp","size":2462,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int_float_LayoutLeft_Rank5.cpp","size":2474,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int64_t_float_LayoutStride_Rank3.cpp","size":2490,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int64_t_double_LayoutLeft_Rank8.cpp","size":2506,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int64_t_double_LayoutStride_Rank1.cpp","size":2486,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int_double_LayoutStride_Rank5.cpp","size":2486,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int64_t_float_LayoutLeft_Rank3.cpp","size":2482,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int64_t_double_LayoutStride_Rank3.cpp","size":2494,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int_int64_t_LayoutStride_Rank2.cpp","size":2478,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int_float_LayoutRight_Rank4.cpp","size":2474,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int64_t_int_LayoutLeft_Rank1.cpp","size":2466,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int_double_LayoutRight_Rank3.cpp","size":2474,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int64_t_double_LayoutRight_Rank8.cpp","size":2510,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int64_t_int_LayoutRight_Rank5.cpp","size":2486,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int_int64_t_LayoutRight_Rank3.cpp","size":2478,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int_int_LayoutLeft_Rank5.cpp","size":2466,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int_int_LayoutRight_Rank3.cpp","size":2462,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int_float_LayoutStride_Rank3.cpp","size":2474,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int64_t_float_LayoutRight_Rank5.cpp","size":2494,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int64_t_int_LayoutLeft_Rank3.cpp","size":2474,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int64_t_float_LayoutRight_Rank1.cpp","size":2478,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int_double_LayoutLeft_Rank1.cpp","size":2462,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int_float_LayoutRight_Rank2.cpp","size":2466,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int64_t_float_LayoutStride_Rank1.cpp","size":2482,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int_double_LayoutStride_Rank2.cpp","size":2474,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int64_t_int64_t_LayoutLeft_Rank4.cpp","size":2494,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int_int64_t_LayoutLeft_Rank5.cpp","size":2482,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int_double_LayoutStride_Rank8.cpp","size":2498,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int_int64_t_LayoutLeft_Rank4.cpp","size":2478,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int_double_LayoutRight_Rank5.cpp","size":2482,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int_int_LayoutStride_Rank5.cpp","size":2474,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int_float_LayoutStride_Rank5.cpp","size":2482,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int_int64_t_LayoutLeft_Rank3.cpp","size":2474,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int_double_LayoutLeft_Rank5.cpp","size":2478,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int64_t_int64_t_LayoutLeft_Rank2.cpp","size":2486,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int_double_LayoutStride_Rank3.cpp","size":2478,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int_int64_t_LayoutStride_Rank8.cpp","size":2502,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int64_t_int_LayoutRight_Rank4.cpp","size":2482,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int64_t_double_LayoutRight_Rank1.cpp","size":2482,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int_int64_t_LayoutStride_Rank4.cpp","size":2486,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int64_t_int_LayoutRight_Rank2.cpp","size":2474,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int_int64_t_LayoutStride_Rank3.cpp","size":2482,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int_int64_t_LayoutStride_Rank5.cpp","size":2490,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int_int_LayoutLeft_Rank3.cpp","size":2458,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int_double_LayoutLeft_Rank4.cpp","size":2474,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int_int_LayoutStride_Rank1.cpp","size":2458,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int64_t_float_LayoutLeft_Rank4.cpp","size":2486,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int64_t_float_LayoutStride_Rank2.cpp","size":2486,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int_float_LayoutRight_Rank5.cpp","size":2478,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int_double_LayoutStride_Rank1.cpp","size":2470,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int64_t_float_LayoutLeft_Rank2.cpp","size":2478,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int_int_LayoutStride_Rank8.cpp","size":2486,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int_double_LayoutLeft_Rank3.cpp","size":2470,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int_int_LayoutLeft_Rank1.cpp","size":2450,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int64_t_int_LayoutRight_Rank3.cpp","size":2478,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int_int_LayoutRight_Rank4.cpp","size":2466,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int64_t_int_LayoutLeft_Rank5.cpp","size":2482,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int64_t_int64_t_LayoutLeft_Rank1.cpp","size":2482,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int_int_LayoutStride_Rank4.cpp","size":2470,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int64_t_int_LayoutLeft_Rank2.cpp","size":2470,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int_int64_t_LayoutStride_Rank1.cpp","size":2474,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int64_t_int64_t_LayoutStride_Rank5.cpp","size":2506,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int64_t_int64_t_LayoutStride_Rank8.cpp","size":2518,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int_int_LayoutLeft_Rank4.cpp","size":2462,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int_int64_t_LayoutLeft_Rank1.cpp","size":2466,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int_float_LayoutRight_Rank1.cpp","size":2462,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int64_t_int_LayoutStride_Rank1.cpp","size":2474,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int_double_LayoutLeft_Rank8.cpp","size":2490,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int64_t_double_LayoutLeft_Rank3.cpp","size":2486,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int64_t_int_LayoutStride_Rank5.cpp","size":2490,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int64_t_float_LayoutRight_Rank2.cpp","size":2482,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int_float_LayoutRight_Rank3.cpp","size":2470,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int64_t_int64_t_LayoutLeft_Rank8.cpp","size":2510,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int64_t_int64_t_LayoutStride_Rank2.cpp","size":2494,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int_int64_t_LayoutRight_Rank4.cpp","size":2482,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int_int_LayoutStride_Rank3.cpp","size":2466,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int_float_LayoutStride_Rank8.cpp","size":2494,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int64_t_double_LayoutLeft_Rank2.cpp","size":2482,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int_double_LayoutLeft_Rank2.cpp","size":2466,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int_float_LayoutStride_Rank4.cpp","size":2478,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int64_t_int64_t_LayoutLeft_Rank3.cpp","size":2490,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int64_t_int64_t_LayoutLeft_Rank5.cpp","size":2498,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int_double_LayoutRight_Rank8.cpp","size":2494,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int_int64_t_LayoutLeft_Rank8.cpp","size":2494,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int_float_LayoutRight_Rank8.cpp","size":2490,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int_int64_t_LayoutRight_Rank2.cpp","size":2474,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int64_t_float_LayoutStride_Rank8.cpp","size":2510,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int_double_LayoutRight_Rank4.cpp","size":2478,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int64_t_int64_t_LayoutRight_Rank1.cpp","size":2486,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int64_t_double_LayoutStride_Rank4.cpp","size":2498,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int64_t_double_LayoutStride_Rank2.cpp","size":2490,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/ROCm/Kokkos_Experimental::ROCm_ViewCopyETIInst_int64_t_float_LayoutLeft_Rank1.cpp","size":2474,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int_int_LayoutRight_Rank8.cpp","size":2434,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int_int_LayoutLeft_Rank2.cpp","size":2406,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int_int64_t_LayoutLeft_Rank5.cpp","size":2434,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int_double_LayoutRight_Rank1.cpp","size":2418,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int_double_LayoutStride_Rank1.cpp","size":2422,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int_int64_t_LayoutLeft_Rank4.cpp","size":2430,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int64_t_float_LayoutRight_Rank4.cpp","size":2442,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int_int64_t_LayoutStride_Rank2.cpp","size":2430,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int64_t_int_LayoutRight_Rank8.cpp","size":2450,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int_int_LayoutStride_Rank5.cpp","size":2426,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int64_t_int_LayoutStride_Rank5.cpp","size":2442,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int64_t_float_LayoutStride_Rank4.cpp","size":2446,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int64_t_int_LayoutLeft_Rank5.cpp","size":2434,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int64_t_int_LayoutRight_Rank5.cpp","size":2438,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int_double_LayoutStride_Rank5.cpp","size":2438,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int64_t_float_LayoutLeft_Rank8.cpp","size":2454,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int_int_LayoutLeft_Rank1.cpp","size":2402,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int64_t_float_LayoutLeft_Rank4.cpp","size":2438,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int64_t_double_LayoutLeft_Rank5.cpp","size":2446,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int64_t_int64_t_LayoutStride_Rank4.cpp","size":2454,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int_float_LayoutRight_Rank1.cpp","size":2414,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int_int64_t_LayoutLeft_Rank1.cpp","size":2418,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int_int64_t_LayoutLeft_Rank2.cpp","size":2422,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int_int_LayoutStride_Rank1.cpp","size":2410,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int_int64_t_LayoutStride_Rank1.cpp","size":2426,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int_int_LayoutRight_Rank2.cpp","size":2410,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int64_t_float_LayoutLeft_Rank1.cpp","size":2426,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int_double_LayoutStride_Rank3.cpp","size":2430,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int64_t_float_LayoutStride_Rank1.cpp","size":2434,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int_float_LayoutLeft_Rank3.cpp","size":2418,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int64_t_double_LayoutStride_Rank3.cpp","size":2446,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int_int64_t_LayoutStride_Rank4.cpp","size":2438,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int64_t_float_LayoutLeft_Rank2.cpp","size":2430,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int_double_LayoutRight_Rank5.cpp","size":2434,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int_float_LayoutStride_Rank3.cpp","size":2426,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int_double_LayoutLeft_Rank4.cpp","size":2426,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int_int_LayoutLeft_Rank8.cpp","size":2430,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int_float_LayoutStride_Rank2.cpp","size":2422,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int_float_LayoutLeft_Rank5.cpp","size":2426,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int_int64_t_LayoutStride_Rank3.cpp","size":2434,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int64_t_int64_t_LayoutStride_Rank3.cpp","size":2450,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int64_t_double_LayoutRight_Rank5.cpp","size":2450,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int64_t_int_LayoutRight_Rank4.cpp","size":2434,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int_double_LayoutRight_Rank8.cpp","size":2446,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int64_t_int64_t_LayoutLeft_Rank5.cpp","size":2450,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int_int_LayoutRight_Rank5.cpp","size":2422,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int64_t_int64_t_LayoutStride_Rank2.cpp","size":2446,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int_int_LayoutRight_Rank3.cpp","size":2414,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int64_t_int64_t_LayoutRight_Rank3.cpp","size":2446,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int_double_LayoutRight_Rank2.cpp","size":2422,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int64_t_float_LayoutRight_Rank3.cpp","size":2438,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int64_t_float_LayoutRight_Rank8.cpp","size":2458,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int_int64_t_LayoutRight_Rank5.cpp","size":2438,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int_int64_t_LayoutRight_Rank2.cpp","size":2426,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int64_t_int64_t_LayoutLeft_Rank1.cpp","size":2434,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int64_t_double_LayoutRight_Rank3.cpp","size":2442,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int64_t_int_LayoutRight_Rank1.cpp","size":2422,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int_int64_t_LayoutStride_Rank5.cpp","size":2442,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int_float_LayoutRight_Rank4.cpp","size":2426,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int_float_LayoutLeft_Rank8.cpp","size":2438,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int64_t_int_LayoutLeft_Rank4.cpp","size":2430,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int64_t_double_LayoutRight_Rank1.cpp","size":2434,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int_float_LayoutStride_Rank4.cpp","size":2430,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int_float_LayoutLeft_Rank1.cpp","size":2410,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int_double_LayoutRight_Rank3.cpp","size":2426,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int64_t_int64_t_LayoutRight_Rank5.cpp","size":2454,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int64_t_int_LayoutLeft_Rank2.cpp","size":2422,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int64_t_int_LayoutStride_Rank2.cpp","size":2430,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int64_t_double_LayoutLeft_Rank4.cpp","size":2442,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int_int_LayoutStride_Rank3.cpp","size":2418,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int_double_LayoutStride_Rank4.cpp","size":2434,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int64_t_double_LayoutRight_Rank8.cpp","size":2462,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int64_t_double_LayoutStride_Rank2.cpp","size":2442,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int_float_LayoutRight_Rank2.cpp","size":2418,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int_int_LayoutRight_Rank1.cpp","size":2406,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int_int_LayoutRight_Rank4.cpp","size":2418,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int_double_LayoutLeft_Rank2.cpp","size":2418,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int64_t_int64_t_LayoutLeft_Rank3.cpp","size":2442,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int64_t_int64_t_LayoutRight_Rank4.cpp","size":2450,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int_int64_t_LayoutRight_Rank1.cpp","size":2422,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int64_t_double_LayoutLeft_Rank1.cpp","size":2430,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int64_t_double_LayoutStride_Rank8.cpp","size":2466,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int_int_LayoutLeft_Rank5.cpp","size":2418,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int_float_LayoutRight_Rank5.cpp","size":2430,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int64_t_int64_t_LayoutRight_Rank1.cpp","size":2438,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int_double_LayoutRight_Rank4.cpp","size":2430,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int64_t_float_LayoutRight_Rank5.cpp","size":2446,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int_float_LayoutStride_Rank1.cpp","size":2418,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int64_t_int_LayoutRight_Rank2.cpp","size":2426,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int_int64_t_LayoutRight_Rank4.cpp","size":2434,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int_int64_t_LayoutRight_Rank3.cpp","size":2430,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int64_t_int64_t_LayoutStride_Rank1.cpp","size":2442,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int64_t_int64_t_LayoutRight_Rank8.cpp","size":2466,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int_double_LayoutStride_Rank2.cpp","size":2426,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int_float_LayoutRight_Rank3.cpp","size":2422,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int64_t_int64_t_LayoutRight_Rank2.cpp","size":2442,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int64_t_float_LayoutStride_Rank5.cpp","size":2450,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int64_t_float_LayoutLeft_Rank5.cpp","size":2442,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int64_t_double_LayoutLeft_Rank2.cpp","size":2434,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int64_t_int_LayoutStride_Rank1.cpp","size":2426,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int64_t_double_LayoutRight_Rank4.cpp","size":2446,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int64_t_double_LayoutLeft_Rank8.cpp","size":2458,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int64_t_int_LayoutLeft_Rank8.cpp","size":2446,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int64_t_int_LayoutLeft_Rank3.cpp","size":2426,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int_double_LayoutStride_Rank8.cpp","size":2450,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int_int64_t_LayoutLeft_Rank8.cpp","size":2446,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int_int_LayoutLeft_Rank4.cpp","size":2414,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int_float_LayoutLeft_Rank2.cpp","size":2414,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int64_t_int64_t_LayoutStride_Rank8.cpp","size":2470,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int64_t_float_LayoutStride_Rank3.cpp","size":2442,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int64_t_int64_t_LayoutLeft_Rank2.cpp","size":2438,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int_float_LayoutLeft_Rank4.cpp","size":2422,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int64_t_int_LayoutStride_Rank3.cpp","size":2434,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int64_t_float_LayoutRight_Rank2.cpp","size":2434,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int64_t_float_LayoutStride_Rank2.cpp","size":2438,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int_double_LayoutLeft_Rank5.cpp","size":2430,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int_int64_t_LayoutStride_Rank8.cpp","size":2454,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int64_t_int_LayoutStride_Rank4.cpp","size":2438,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int_int_LayoutStride_Rank2.cpp","size":2414,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int64_t_double_LayoutRight_Rank2.cpp","size":2438,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int64_t_int64_t_LayoutStride_Rank5.cpp","size":2458,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int_int64_t_LayoutLeft_Rank3.cpp","size":2426,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int64_t_int_LayoutRight_Rank3.cpp","size":2430,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int64_t_int64_t_LayoutLeft_Rank4.cpp","size":2446,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int_int_LayoutStride_Rank4.cpp","size":2422,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int_int64_t_LayoutRight_Rank8.cpp","size":2450,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int_float_LayoutStride_Rank5.cpp","size":2434,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int64_t_int64_t_LayoutLeft_Rank8.cpp","size":2462,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int_double_LayoutLeft_Rank3.cpp","size":2422,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int64_t_int_LayoutStride_Rank8.cpp","size":2454,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int64_t_int_LayoutLeft_Rank1.cpp","size":2418,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int_float_LayoutRight_Rank8.cpp","size":2442,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int64_t_double_LayoutLeft_Rank3.cpp","size":2438,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int64_t_double_LayoutStride_Rank1.cpp","size":2438,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int_double_LayoutLeft_Rank1.cpp","size":2414,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int64_t_double_LayoutStride_Rank4.cpp","size":2450,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int_int_LayoutLeft_Rank3.cpp","size":2410,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int64_t_float_LayoutStride_Rank8.cpp","size":2462,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int64_t_double_LayoutStride_Rank5.cpp","size":2454,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int64_t_float_LayoutLeft_Rank3.cpp","size":2434,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int_float_LayoutStride_Rank8.cpp","size":2446,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int64_t_float_LayoutRight_Rank1.cpp","size":2430,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int_int_LayoutStride_Rank8.cpp","size":2438,"last_modified":1529436740}{"name":"./kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int_double_LayoutLeft_Rank8.cpp","size":2442,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int_float_LayoutLeft_Rank2.cpp","size":2406,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int_int64_t_LayoutLeft_Rank1.cpp","size":2410,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int_float_LayoutRight_Rank4.cpp","size":2418,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int64_t_double_LayoutRight_Rank3.cpp","size":2434,"last_modified":1529436738}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int64_t_float_LayoutRight_Rank5.cpp","size":2438,"last_modified":1529436738}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int64_t_int64_t_LayoutStride_Rank1.cpp","size":2434,"last_modified":1529436738}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int64_t_int_LayoutLeft_Rank5.cpp","size":2426,"last_modified":1529436738}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int64_t_double_LayoutLeft_Rank2.cpp","size":2426,"last_modified":1529436738}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int_float_LayoutLeft_Rank1.cpp","size":2402,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int_double_LayoutRight_Rank1.cpp","size":2410,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int_int_LayoutLeft_Rank8.cpp","size":2422,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int_int_LayoutStride_Rank4.cpp","size":2414,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int_int64_t_LayoutStride_Rank5.cpp","size":2434,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int_float_LayoutStride_Rank4.cpp","size":2422,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int_double_LayoutRight_Rank4.cpp","size":2422,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int64_t_int64_t_LayoutStride_Rank4.cpp","size":2446,"last_modified":1529436738}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int_double_LayoutLeft_Rank5.cpp","size":2422,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int_int64_t_LayoutLeft_Rank5.cpp","size":2426,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int64_t_double_LayoutStride_Rank4.cpp","size":2442,"last_modified":1529436738}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int64_t_int64_t_LayoutStride_Rank3.cpp","size":2442,"last_modified":1529436738}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int_double_LayoutStride_Rank2.cpp","size":2418,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int64_t_int64_t_LayoutLeft_Rank3.cpp","size":2434,"last_modified":1529436738}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int_int64_t_LayoutLeft_Rank2.cpp","size":2414,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int64_t_double_LayoutStride_Rank8.cpp","size":2458,"last_modified":1529436738}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int64_t_int_LayoutRight_Rank8.cpp","size":2442,"last_modified":1529436738}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int_float_LayoutRight_Rank2.cpp","size":2410,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int_int_LayoutRight_Rank1.cpp","size":2398,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int64_t_float_LayoutRight_Rank1.cpp","size":2422,"last_modified":1529436738}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int64_t_int64_t_LayoutRight_Rank8.cpp","size":2458,"last_modified":1529436738}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int64_t_float_LayoutStride_Rank8.cpp","size":2454,"last_modified":1529436738}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int64_t_float_LayoutStride_Rank3.cpp","size":2434,"last_modified":1529436738}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int_int_LayoutLeft_Rank1.cpp","size":2394,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int_int_LayoutRight_Rank4.cpp","size":2410,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int_float_LayoutRight_Rank3.cpp","size":2414,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int64_t_int64_t_LayoutRight_Rank2.cpp","size":2434,"last_modified":1529436738}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int_int64_t_LayoutRight_Rank1.cpp","size":2414,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int_double_LayoutStride_Rank3.cpp","size":2422,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int_double_LayoutStride_Rank5.cpp","size":2430,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int_int64_t_LayoutLeft_Rank3.cpp","size":2418,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int64_t_double_LayoutLeft_Rank4.cpp","size":2434,"last_modified":1529436738}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int_float_LayoutLeft_Rank8.cpp","size":2430,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int64_t_double_LayoutStride_Rank3.cpp","size":2438,"last_modified":1529436738}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int_double_LayoutStride_Rank8.cpp","size":2442,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int_int_LayoutStride_Rank5.cpp","size":2418,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int_int64_t_LayoutStride_Rank4.cpp","size":2430,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int_float_LayoutRight_Rank5.cpp","size":2422,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int_float_LayoutRight_Rank1.cpp","size":2406,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int_int64_t_LayoutStride_Rank8.cpp","size":2446,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int64_t_double_LayoutStride_Rank5.cpp","size":2446,"last_modified":1529436738}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int64_t_int_LayoutStride_Rank1.cpp","size":2418,"last_modified":1529436738}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int_double_LayoutStride_Rank1.cpp","size":2414,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int_float_LayoutStride_Rank5.cpp","size":2426,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int64_t_int_LayoutRight_Rank5.cpp","size":2430,"last_modified":1529436738}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int64_t_int_LayoutLeft_Rank2.cpp","size":2414,"last_modified":1529436738}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int64_t_int_LayoutLeft_Rank1.cpp","size":2410,"last_modified":1529436738}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int64_t_int_LayoutStride_Rank4.cpp","size":2430,"last_modified":1529436738}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int_int64_t_LayoutRight_Rank2.cpp","size":2418,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int64_t_int_LayoutRight_Rank1.cpp","size":2414,"last_modified":1529436738}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int_double_LayoutLeft_Rank3.cpp","size":2414,"last_modified":1529436738}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int_int_LayoutRight_Rank3.cpp","size":2406,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int_double_LayoutLeft_Rank8.cpp","size":2434,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int64_t_double_LayoutStride_Rank1.cpp","size":2430,"last_modified":1529436738}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int_int_LayoutRight_Rank5.cpp","size":2414,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int64_t_int64_t_LayoutRight_Rank1.cpp","size":2430,"last_modified":1529436738}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int64_t_float_LayoutRight_Rank8.cpp","size":2450,"last_modified":1529436738}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int_int64_t_LayoutStride_Rank1.cpp","size":2418,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int64_t_double_LayoutLeft_Rank5.cpp","size":2438,"last_modified":1529436738}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int64_t_float_LayoutRight_Rank2.cpp","size":2426,"last_modified":1529436738}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int64_t_int64_t_LayoutRight_Rank4.cpp","size":2442,"last_modified":1529436738}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int64_t_double_LayoutRight_Rank4.cpp","size":2438,"last_modified":1529436738}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int64_t_float_LayoutRight_Rank3.cpp","size":2430,"last_modified":1529436738}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int64_t_int64_t_LayoutLeft_Rank4.cpp","size":2438,"last_modified":1529436738}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int64_t_int_LayoutStride_Rank3.cpp","size":2426,"last_modified":1529436738}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int_float_LayoutLeft_Rank5.cpp","size":2418,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int64_t_double_LayoutLeft_Rank3.cpp","size":2430,"last_modified":1529436738}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int_float_LayoutRight_Rank8.cpp","size":2434,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int64_t_double_LayoutLeft_Rank1.cpp","size":2422,"last_modified":1529436738}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int64_t_float_LayoutStride_Rank5.cpp","size":2442,"last_modified":1529436738}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int64_t_int64_t_LayoutStride_Rank5.cpp","size":2450,"last_modified":1529436738}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int_int_LayoutLeft_Rank3.cpp","size":2402,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int64_t_int64_t_LayoutRight_Rank5.cpp","size":2446,"last_modified":1529436738}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int_int64_t_LayoutRight_Rank4.cpp","size":2426,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int64_t_float_LayoutLeft_Rank2.cpp","size":2422,"last_modified":1529436738}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int64_t_int64_t_LayoutLeft_Rank8.cpp","size":2454,"last_modified":1529436738}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int_int_LayoutLeft_Rank4.cpp","size":2406,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int64_t_double_LayoutRight_Rank5.cpp","size":2442,"last_modified":1529436738}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int_double_LayoutRight_Rank5.cpp","size":2426,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int_double_LayoutLeft_Rank2.cpp","size":2410,"last_modified":1529436738}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int_double_LayoutStride_Rank4.cpp","size":2426,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int64_t_int64_t_LayoutLeft_Rank2.cpp","size":2430,"last_modified":1529436738}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int_double_LayoutRight_Rank3.cpp","size":2418,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int64_t_float_LayoutLeft_Rank5.cpp","size":2434,"last_modified":1529436738}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int64_t_double_LayoutLeft_Rank8.cpp","size":2450,"last_modified":1529436738}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int_double_LayoutLeft_Rank4.cpp","size":2418,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int64_t_int_LayoutStride_Rank8.cpp","size":2446,"last_modified":1529436738}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int64_t_int64_t_LayoutLeft_Rank5.cpp","size":2442,"last_modified":1529436738}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int_float_LayoutLeft_Rank4.cpp","size":2414,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int_int64_t_LayoutStride_Rank2.cpp","size":2422,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int64_t_float_LayoutLeft_Rank1.cpp","size":2418,"last_modified":1529436738}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int_int64_t_LayoutRight_Rank5.cpp","size":2430,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int64_t_float_LayoutRight_Rank4.cpp","size":2434,"last_modified":1529436738}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int64_t_float_LayoutLeft_Rank4.cpp","size":2430,"last_modified":1529436738}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int_double_LayoutRight_Rank2.cpp","size":2414,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int64_t_int64_t_LayoutLeft_Rank1.cpp","size":2426,"last_modified":1529436738}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int64_t_float_LayoutLeft_Rank3.cpp","size":2426,"last_modified":1529436738}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int64_t_int64_t_LayoutStride_Rank2.cpp","size":2438,"last_modified":1529436738}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int_int_LayoutRight_Rank8.cpp","size":2426,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int64_t_float_LayoutStride_Rank2.cpp","size":2430,"last_modified":1529436738}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int64_t_double_LayoutRight_Rank1.cpp","size":2426,"last_modified":1529436738}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int64_t_double_LayoutRight_Rank8.cpp","size":2454,"last_modified":1529436738}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int64_t_int_LayoutRight_Rank2.cpp","size":2418,"last_modified":1529436738}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int64_t_double_LayoutStride_Rank2.cpp","size":2434,"last_modified":1529436738}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int64_t_int64_t_LayoutRight_Rank3.cpp","size":2438,"last_modified":1529436738}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int_int64_t_LayoutStride_Rank3.cpp","size":2426,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int64_t_int_LayoutLeft_Rank3.cpp","size":2418,"last_modified":1529436738}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int_int_LayoutLeft_Rank2.cpp","size":2398,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int_float_LayoutStride_Rank2.cpp","size":2414,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int64_t_double_LayoutRight_Rank2.cpp","size":2430,"last_modified":1529436738}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int_int64_t_LayoutLeft_Rank8.cpp","size":2438,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int_double_LayoutRight_Rank8.cpp","size":2438,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int_double_LayoutLeft_Rank1.cpp","size":2406,"last_modified":1529436738}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int_int_LayoutLeft_Rank5.cpp","size":2410,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int64_t_float_LayoutStride_Rank4.cpp","size":2438,"last_modified":1529436738}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int64_t_int_LayoutStride_Rank5.cpp","size":2434,"last_modified":1529436738}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int64_t_int_LayoutRight_Rank4.cpp","size":2426,"last_modified":1529436738}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int64_t_int_LayoutLeft_Rank4.cpp","size":2422,"last_modified":1529436738}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int_float_LayoutStride_Rank3.cpp","size":2418,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int_int_LayoutRight_Rank2.cpp","size":2402,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int_int64_t_LayoutLeft_Rank4.cpp","size":2422,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int64_t_int_LayoutRight_Rank3.cpp","size":2422,"last_modified":1529436738}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int_float_LayoutStride_Rank1.cpp","size":2410,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int64_t_float_LayoutStride_Rank1.cpp","size":2426,"last_modified":1529436738}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int_float_LayoutLeft_Rank3.cpp","size":2410,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int64_t_int_LayoutLeft_Rank8.cpp","size":2438,"last_modified":1529436738}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int_int64_t_LayoutRight_Rank8.cpp","size":2442,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int64_t_float_LayoutLeft_Rank8.cpp","size":2446,"last_modified":1529436738}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int_float_LayoutStride_Rank8.cpp","size":2438,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int64_t_int64_t_LayoutStride_Rank8.cpp","size":2462,"last_modified":1529436738}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int_int64_t_LayoutRight_Rank3.cpp","size":2422,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int_int_LayoutStride_Rank1.cpp","size":2402,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int64_t_int_LayoutStride_Rank2.cpp","size":2422,"last_modified":1529436738}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int_int_LayoutStride_Rank8.cpp","size":2430,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int_int_LayoutStride_Rank2.cpp","size":2406,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int_int_LayoutStride_Rank3.cpp","size":2410,"last_modified":1529436739}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int_float_LayoutRight_Rank2.cpp","size":2422,"last_modified":1529436743}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int_double_LayoutRight_Rank2.cpp","size":2426,"last_modified":1529436743}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int64_t_double_LayoutLeft_Rank4.cpp","size":2446,"last_modified":1529436742}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int_int64_t_LayoutStride_Rank4.cpp","size":2442,"last_modified":1529436743}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int_int_LayoutRight_Rank4.cpp","size":2422,"last_modified":1529436744}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int64_t_int_LayoutStride_Rank4.cpp","size":2442,"last_modified":1529436743}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int_int_LayoutRight_Rank2.cpp","size":2414,"last_modified":1529436744}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int_int64_t_LayoutRight_Rank5.cpp","size":2442,"last_modified":1529436743}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int64_t_float_LayoutRight_Rank3.cpp","size":2442,"last_modified":1529436742}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int64_t_float_LayoutLeft_Rank3.cpp","size":2438,"last_modified":1529436742}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int64_t_float_LayoutRight_Rank4.cpp","size":2446,"last_modified":1529436742}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int64_t_double_LayoutRight_Rank1.cpp","size":2438,"last_modified":1529436742}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int_int_LayoutStride_Rank2.cpp","size":2418,"last_modified":1529436744}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int_int64_t_LayoutStride_Rank8.cpp","size":2458,"last_modified":1529436743}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int_int_LayoutRight_Rank1.cpp","size":2410,"last_modified":1529436743}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int_double_LayoutStride_Rank5.cpp","size":2442,"last_modified":1529436743}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int64_t_double_LayoutStride_Rank4.cpp","size":2454,"last_modified":1529436742}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int_int64_t_LayoutStride_Rank3.cpp","size":2438,"last_modified":1529436743}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int_int_LayoutRight_Rank8.cpp","size":2438,"last_modified":1529436744}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int64_t_int64_t_LayoutRight_Rank2.cpp","size":2446,"last_modified":1529436742}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int64_t_int_LayoutLeft_Rank2.cpp","size":2426,"last_modified":1529436743}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int64_t_double_LayoutLeft_Rank8.cpp","size":2462,"last_modified":1529436742}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int64_t_int64_t_LayoutStride_Rank3.cpp","size":2454,"last_modified":1529436743}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int64_t_double_LayoutStride_Rank5.cpp","size":2458,"last_modified":1529436742}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int_float_LayoutStride_Rank8.cpp","size":2450,"last_modified":1529436743}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int64_t_double_LayoutRight_Rank2.cpp","size":2442,"last_modified":1529436742}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int64_t_int64_t_LayoutLeft_Rank5.cpp","size":2454,"last_modified":1529436742}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int_int_LayoutLeft_Rank3.cpp","size":2414,"last_modified":1529436743}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int_float_LayoutStride_Rank2.cpp","size":2426,"last_modified":1529436743}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int64_t_double_LayoutStride_Rank1.cpp","size":2442,"last_modified":1529436742}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int_int_LayoutLeft_Rank1.cpp","size":2406,"last_modified":1529436743}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int_double_LayoutStride_Rank1.cpp","size":2426,"last_modified":1529436743}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int_double_LayoutStride_Rank3.cpp","size":2434,"last_modified":1529436743}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int64_t_int64_t_LayoutLeft_Rank1.cpp","size":2438,"last_modified":1529436742}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int64_t_double_LayoutLeft_Rank2.cpp","size":2438,"last_modified":1529436742}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int_int_LayoutStride_Rank1.cpp","size":2414,"last_modified":1529436744}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int_double_LayoutLeft_Rank5.cpp","size":2434,"last_modified":1529436743}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int64_t_int_LayoutLeft_Rank5.cpp","size":2438,"last_modified":1529436743}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int64_t_int_LayoutLeft_Rank8.cpp","size":2450,"last_modified":1529436743}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int64_t_int_LayoutRight_Rank1.cpp","size":2426,"last_modified":1529436743}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int_int_LayoutLeft_Rank8.cpp","size":2434,"last_modified":1529436743}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int64_t_int_LayoutRight_Rank5.cpp","size":2442,"last_modified":1529436743}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int64_t_float_LayoutRight_Rank5.cpp","size":2450,"last_modified":1529436742}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int64_t_int_LayoutStride_Rank2.cpp","size":2434,"last_modified":1529436743}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int64_t_float_LayoutLeft_Rank1.cpp","size":2430,"last_modified":1529436742}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int64_t_double_LayoutRight_Rank8.cpp","size":2466,"last_modified":1529436742}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int_float_LayoutRight_Rank8.cpp","size":2446,"last_modified":1529436743}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int64_t_double_LayoutLeft_Rank1.cpp","size":2434,"last_modified":1529436742}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int_int_LayoutRight_Rank5.cpp","size":2426,"last_modified":1529436744}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int64_t_float_LayoutLeft_Rank4.cpp","size":2442,"last_modified":1529436742}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int_double_LayoutRight_Rank1.cpp","size":2422,"last_modified":1529436743}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int_double_LayoutLeft_Rank1.cpp","size":2418,"last_modified":1529436743}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int64_t_float_LayoutRight_Rank8.cpp","size":2462,"last_modified":1529436742}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int_int_LayoutLeft_Rank2.cpp","size":2410,"last_modified":1529436743}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int64_t_int64_t_LayoutRight_Rank4.cpp","size":2454,"last_modified":1529436742}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int64_t_float_LayoutStride_Rank3.cpp","size":2446,"last_modified":1529436742}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int_int64_t_LayoutRight_Rank2.cpp","size":2430,"last_modified":1529436743}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int64_t_int64_t_LayoutRight_Rank5.cpp","size":2458,"last_modified":1529436742}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int_float_LayoutRight_Rank4.cpp","size":2430,"last_modified":1529436743}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int64_t_int64_t_LayoutStride_Rank8.cpp","size":2474,"last_modified":1529436743}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int_double_LayoutRight_Rank8.cpp","size":2450,"last_modified":1529436743}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int64_t_int64_t_LayoutStride_Rank4.cpp","size":2458,"last_modified":1529436743}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int64_t_double_LayoutRight_Rank3.cpp","size":2446,"last_modified":1529436742}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int_double_LayoutStride_Rank2.cpp","size":2430,"last_modified":1529436743}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int_float_LayoutLeft_Rank1.cpp","size":2414,"last_modified":1529436743}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int64_t_int_LayoutStride_Rank5.cpp","size":2446,"last_modified":1529436743}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int64_t_int64_t_LayoutLeft_Rank3.cpp","size":2446,"last_modified":1529436742}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int64_t_int_LayoutRight_Rank4.cpp","size":2438,"last_modified":1529436743}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int_float_LayoutStride_Rank5.cpp","size":2438,"last_modified":1529436743}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int_int64_t_LayoutRight_Rank4.cpp","size":2438,"last_modified":1529436743}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int64_t_int64_t_LayoutRight_Rank3.cpp","size":2450,"last_modified":1529436742}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int64_t_double_LayoutRight_Rank5.cpp","size":2454,"last_modified":1529436742}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int_int64_t_LayoutStride_Rank2.cpp","size":2434,"last_modified":1529436743}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int_float_LayoutLeft_Rank2.cpp","size":2418,"last_modified":1529436743}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int_int64_t_LayoutStride_Rank5.cpp","size":2446,"last_modified":1529436743}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int_float_LayoutStride_Rank3.cpp","size":2430,"last_modified":1529436743}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int64_t_int64_t_LayoutStride_Rank5.cpp","size":2462,"last_modified":1529436743}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int_double_LayoutStride_Rank8.cpp","size":2454,"last_modified":1529436743}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int64_t_int_LayoutRight_Rank8.cpp","size":2454,"last_modified":1529436743}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int64_t_int64_t_LayoutRight_Rank8.cpp","size":2470,"last_modified":1529436743}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int_int64_t_LayoutRight_Rank3.cpp","size":2434,"last_modified":1529436743}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int_int_LayoutStride_Rank5.cpp","size":2430,"last_modified":1529436744}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int_int64_t_LayoutLeft_Rank1.cpp","size":2422,"last_modified":1529436743}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int64_t_double_LayoutLeft_Rank3.cpp","size":2442,"last_modified":1529436742}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int_double_LayoutLeft_Rank3.cpp","size":2426,"last_modified":1529436743}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int_int64_t_LayoutRight_Rank8.cpp","size":2454,"last_modified":1529436743}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int_double_LayoutLeft_Rank2.cpp","size":2422,"last_modified":1529436743}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int_int64_t_LayoutLeft_Rank8.cpp","size":2450,"last_modified":1529436743}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int64_t_int_LayoutLeft_Rank4.cpp","size":2434,"last_modified":1529436743}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int64_t_int_LayoutRight_Rank3.cpp","size":2434,"last_modified":1529436743}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int64_t_float_LayoutStride_Rank4.cpp","size":2450,"last_modified":1529436742}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int64_t_int_LayoutLeft_Rank1.cpp","size":2422,"last_modified":1529436743}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int64_t_float_LayoutStride_Rank2.cpp","size":2442,"last_modified":1529436742}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int_double_LayoutLeft_Rank8.cpp","size":2446,"last_modified":1529436743}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int64_t_float_LayoutRight_Rank1.cpp","size":2434,"last_modified":1529436742}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int_int_LayoutLeft_Rank5.cpp","size":2422,"last_modified":1529436743}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int64_t_float_LayoutStride_Rank8.cpp","size":2466,"last_modified":1529436742}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int_int64_t_LayoutLeft_Rank2.cpp","size":2426,"last_modified":1529436743}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int_float_LayoutRight_Rank3.cpp","size":2426,"last_modified":1529436743}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int_double_LayoutRight_Rank4.cpp","size":2434,"last_modified":1529436743}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int64_t_double_LayoutLeft_Rank5.cpp","size":2450,"last_modified":1529436742}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int64_t_double_LayoutStride_Rank3.cpp","size":2450,"last_modified":1529436742}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int_int64_t_LayoutRight_Rank1.cpp","size":2426,"last_modified":1529436743}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int64_t_int_LayoutStride_Rank3.cpp","size":2438,"last_modified":1529436743}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int64_t_double_LayoutRight_Rank4.cpp","size":2450,"last_modified":1529436742}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int_int_LayoutStride_Rank3.cpp","size":2422,"last_modified":1529436744}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int_float_LayoutLeft_Rank8.cpp","size":2442,"last_modified":1529436743}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int64_t_float_LayoutStride_Rank1.cpp","size":2438,"last_modified":1529436742}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int_int_LayoutLeft_Rank4.cpp","size":2418,"last_modified":1529436743}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int_int64_t_LayoutLeft_Rank5.cpp","size":2438,"last_modified":1529436743}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int_double_LayoutLeft_Rank4.cpp","size":2430,"last_modified":1529436743}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int_double_LayoutStride_Rank4.cpp","size":2438,"last_modified":1529436743}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int64_t_int_LayoutLeft_Rank3.cpp","size":2430,"last_modified":1529436743}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int_int64_t_LayoutStride_Rank1.cpp","size":2430,"last_modified":1529436743}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int_int_LayoutStride_Rank4.cpp","size":2426,"last_modified":1529436744}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int_float_LayoutLeft_Rank5.cpp","size":2430,"last_modified":1529436743}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int64_t_int64_t_LayoutRight_Rank1.cpp","size":2442,"last_modified":1529436742}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int64_t_int64_t_LayoutLeft_Rank8.cpp","size":2466,"last_modified":1529436742}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int64_t_int64_t_LayoutLeft_Rank4.cpp","size":2450,"last_modified":1529436742}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int_double_LayoutRight_Rank3.cpp","size":2430,"last_modified":1529436743}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int64_t_int64_t_LayoutStride_Rank1.cpp","size":2446,"last_modified":1529436743}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int_float_LayoutRight_Rank1.cpp","size":2418,"last_modified":1529436743}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int64_t_int_LayoutStride_Rank8.cpp","size":2458,"last_modified":1529436743}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int64_t_double_LayoutStride_Rank2.cpp","size":2446,"last_modified":1529436742}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int_int64_t_LayoutLeft_Rank4.cpp","size":2434,"last_modified":1529436743}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int_int_LayoutStride_Rank8.cpp","size":2442,"last_modified":1529436744}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int_float_LayoutRight_Rank5.cpp","size":2434,"last_modified":1529436743}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int64_t_float_LayoutStride_Rank5.cpp","size":2454,"last_modified":1529436742}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int64_t_int_LayoutRight_Rank2.cpp","size":2430,"last_modified":1529436743}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int_float_LayoutStride_Rank4.cpp","size":2434,"last_modified":1529436743}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int_float_LayoutStride_Rank1.cpp","size":2422,"last_modified":1529436743}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int64_t_float_LayoutLeft_Rank2.cpp","size":2434,"last_modified":1529436742}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int64_t_int_LayoutStride_Rank1.cpp","size":2430,"last_modified":1529436743}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int_int_LayoutRight_Rank3.cpp","size":2418,"last_modified":1529436744}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int_double_LayoutRight_Rank5.cpp","size":2438,"last_modified":1529436743}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int_float_LayoutLeft_Rank3.cpp","size":2422,"last_modified":1529436743}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int_float_LayoutLeft_Rank4.cpp","size":2426,"last_modified":1529436743}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int64_t_double_LayoutStride_Rank8.cpp","size":2470,"last_modified":1529436742}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int_int64_t_LayoutLeft_Rank3.cpp","size":2430,"last_modified":1529436743}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int64_t_float_LayoutRight_Rank2.cpp","size":2438,"last_modified":1529436742}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int64_t_float_LayoutLeft_Rank5.cpp","size":2446,"last_modified":1529436742}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int64_t_int64_t_LayoutLeft_Rank2.cpp","size":2442,"last_modified":1529436742}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int64_t_float_LayoutLeft_Rank8.cpp","size":2458,"last_modified":1529436742}{"name":"./kokkos/core/src/eti/Threads/Kokkos_Threads_ViewCopyETIInst_int64_t_int64_t_LayoutStride_Rank2.cpp","size":2450,"last_modified":1529436743}{"name":"./kokkos/core/src/ROCm/Kokkos_ROCm_Task.cpp","size":6110,"last_modified":1529436738}{"name":"./kokkos/core/src/ROCm/Kokkos_ROCm_Impl.cpp","size":22572,"last_modified":1529436738}{"name":"./kokkos/core/src/ROCm/Kokkos_ROCm_Exec.cpp","size":4201,"last_modified":1529436738}{"name":"./kokkos/core/src/ROCm/Kokkos_ROCm_Space.cpp","size":22880,"last_modified":1529436738}{"name":"./kokkos/core/src/OpenMP/Kokkos_OpenMP_Task.cpp","size":8698,"last_modified":1529436738}{"name":"./kokkos/core/src/OpenMP/Kokkos_OpenMP_Exec.cpp","size":15986,"last_modified":1529436738}{"name":"./kokkos/core/src/Cuda/Kokkos_Cuda_Locks.cpp","size":4092,"last_modified":1529436737}{"name":"./kokkos/core/src/Cuda/Kokkos_Cuda_Task.cpp","size":8427,"last_modified":1529436737}{"name":"./kokkos/core/src/Cuda/Kokkos_Cuda_Impl.cpp","size":26717,"last_modified":1529436737}{"name":"./kokkos/core/src/Cuda/Kokkos_CudaSpace.cpp","size":28146,"last_modified":1529436737}{"name":"./kokkos/core/src/Threads/Kokkos_ThreadsExec_base.cpp","size":6622,"last_modified":1529436738}{"name":"./kokkos/core/src/Threads/Kokkos_ThreadsExec.cpp","size":26306,"last_modified":1529436738}{"name":"./kokkos/core/src/Qthreads/Kokkos_Qthreads_Task.cpp","size":9694,"last_modified":1529436738}{"name":"./kokkos/core/src/Qthreads/Kokkos_QthreadsExec.cpp","size":15836,"last_modified":1529436738}{"name":"./kokkos/core/src/impl/Kokkos_Spinwait.cpp","size":5213,"last_modified":1529436745}{"name":"./kokkos/core/src/impl/Kokkos_Profiling_Interface.cpp","size":12667,"last_modified":1529436744}{"name":"./kokkos/core/src/impl/Kokkos_Core.cpp","size":28621,"last_modified":1529436744}{"name":"./kokkos/core/src/impl/Kokkos_MemoryPool.cpp","size":4435,"last_modified":1529436744}{"name":"./kokkos/core/src/impl/Kokkos_ExecPolicy.cpp","size":2317,"last_modified":1529436744}{"name":"./kokkos/core/src/impl/Kokkos_HostSpace.cpp","size":16334,"last_modified":1529436744}{"name":"./kokkos/core/src/impl/Kokkos_Error.cpp","size":5025,"last_modified":1529436744}{"name":"./kokkos/core/src/impl/Kokkos_Serial_Task.cpp","size":5459,"last_modified":1529436744}{"name":"./kokkos/core/src/impl/Kokkos_HostThreadTeam.cpp","size":10832,"last_modified":1529436744}{"name":"./kokkos/core/src/impl/Kokkos_Serial.cpp","size":7016,"last_modified":1529436744}{"name":"./kokkos/core/src/impl/Kokkos_hwloc.cpp","size":24730,"last_modified":1529436745}{"name":"./kokkos/core/src/impl/Kokkos_SharedAlloc.cpp","size":12657,"last_modified":1529436745}{"name":"./kokkos/core/src/impl/Kokkos_HostBarrier.cpp","size":3671,"last_modified":1529436744}{"name":"./kokkos/core/src/impl/Kokkos_HBWSpace.cpp","size":11733,"last_modified":1529436744}{"name":"./kokkos/core/src/impl/Kokkos_CPUDiscovery.cpp","size":3546,"last_modified":1529436744}{"name":"./kokkos/core/perf_test/PerfTest_ViewCopy_d7.cpp","size":2213,"last_modified":1529436737}{"name":"./kokkos/core/perf_test/test_taskdag.cpp","size":8547,"last_modified":1529436737}{"name":"./kokkos/core/perf_test/PerfTestHexGrad.cpp","size":9879,"last_modified":1529436737}{"name":"./kokkos/core/perf_test/PerfTest_ViewCopy_c8.cpp","size":2213,"last_modified":1529436737}{"name":"./kokkos/core/perf_test/PerfTest_ViewCopy_d8.cpp","size":2213,"last_modified":1529436737}{"name":"./kokkos/core/perf_test/PerfTest_ViewCopy_b45.cpp","size":2218,"last_modified":1529436737}{"name":"./kokkos/core/perf_test/PerfTestGramSchmidt.cpp","size":8577,"last_modified":1529436737}{"name":"./kokkos/core/perf_test/PerfTestMain.cpp","size":2653,"last_modified":1529436737}{"name":"./kokkos/core/perf_test/PerfTest_ViewCopy_d45.cpp","size":2215,"last_modified":1529436737}{"name":"./kokkos/core/perf_test/PerfTest_ViewCopy_b7.cpp","size":2216,"last_modified":1529436737}{"name":"./kokkos/core/perf_test/PerfTest_ViewCopy_c7.cpp","size":2213,"last_modified":1529436737}{"name":"./kokkos/core/perf_test/PerfTest_ViewCopy_a123.cpp","size":2214,"last_modified":1529436737}{"name":"./kokkos/core/perf_test/PerfTest_ViewCopy_a7.cpp","size":2210,"last_modified":1529436737}{"name":"./kokkos/core/perf_test/PerfTest_ViewResize_8.cpp","size":2281,"last_modified":1529436737}{"name":"./kokkos/core/perf_test/test_mempool.cpp","size":11387,"last_modified":1529436737}{"name":"./kokkos/core/perf_test/PerfTest_ViewCopy_d123.cpp","size":2217,"last_modified":1529436737}{"name":"./kokkos/core/perf_test/PerfTest_ViewCopy_b8.cpp","size":2216,"last_modified":1529436737}{"name":"./kokkos/core/perf_test/PerfTest_ViewCopy_a8.cpp","size":2210,"last_modified":1529436737}{"name":"./kokkos/core/perf_test/PerfTest_CustomReduction.cpp","size":4764,"last_modified":1529436737}{"name":"./kokkos/core/perf_test/PerfTest_ViewFill_45.cpp","size":2268,"last_modified":1529436737}{"name":"./kokkos/core/perf_test/PerfTest_ViewAllocate.cpp","size":5022,"last_modified":1529436737}{"name":"./kokkos/core/perf_test/PerfTest_ViewFill_6.cpp","size":2265,"last_modified":1529436737}{"name":"./kokkos/core/perf_test/PerfTest_ViewFill_8.cpp","size":2265,"last_modified":1529436737}{"name":"./kokkos/core/perf_test/PerfTest_ViewFill_7.cpp","size":2265,"last_modified":1529436737}{"name":"./kokkos/core/perf_test/PerfTest_ViewCopy_b123.cpp","size":2220,"last_modified":1529436737}{"name":"./kokkos/core/perf_test/PerfTest_ViewCopy_b6.cpp","size":2216,"last_modified":1529436737}{"name":"./kokkos/core/perf_test/PerfTest_ViewFill_123.cpp","size":2271,"last_modified":1529436737}{"name":"./kokkos/core/perf_test/PerfTest_ViewResize_6.cpp","size":2281,"last_modified":1529436737}{"name":"./kokkos/core/perf_test/PerfTest_ViewResize_7.cpp","size":2281,"last_modified":1529436737}{"name":"./kokkos/core/perf_test/PerfTest_ViewCopy_c123.cpp","size":2217,"last_modified":1529436737}{"name":"./kokkos/core/perf_test/PerfTest_ViewResize_45.cpp","size":2285,"last_modified":1529436737}{"name":"./kokkos/core/perf_test/PerfTest_ViewResize_123.cpp","size":2287,"last_modified":1529436737}{"name":"./kokkos/core/perf_test/PerfTest_ViewCopy_c6.cpp","size":2213,"last_modified":1529436737}{"name":"./kokkos/core/perf_test/PerfTest_ViewCopy_a45.cpp","size":2212,"last_modified":1529436737}{"name":"./kokkos/core/perf_test/PerfTest_ViewCopy_c45.cpp","size":2215,"last_modified":1529436737}{"name":"./kokkos/core/perf_test/PerfTest_ViewCopy_a6.cpp","size":2210,"last_modified":1529436737}{"name":"./kokkos/core/perf_test/PerfTest_ViewCopy_d6.cpp","size":2213,"last_modified":1529436737}{"name":"./kokkos/core/perf_test/test_atomic.cpp","size":12588,"last_modified":1529436737}{"name":"./kokkos/core/unit_test/TestHostBarrier.cpp","size":231,"last_modified":1529436746}{"name":"./kokkos/core/unit_test/openmptarget/TestOpenMPTarget_ViewAPI_b.cpp","size":2048,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmptarget/TestOpenMPTarget_MDRange_b.cpp","size":2048,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmptarget/TestOpenMPTarget_MDRange_e.cpp","size":2048,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmptarget/TestOpenMPTarget_SubView_c12.cpp","size":2271,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmptarget/TestOpenMPTarget_RangePolicy.cpp","size":2044,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmptarget/TestOpenMPTarget_SubView_a.cpp","size":3327,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmptarget/TestOpenMPTarget_Reducers_d.cpp","size":2049,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmptarget/TestOpenMPTarget_SubView_c08.cpp","size":2257,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmptarget/TestOpenMPTarget_Atomics.cpp","size":2046,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmptarget/TestOpenMPTarget_Other.cpp","size":2163,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmptarget/TestOpenMPTarget_SubView_c03.cpp","size":2254,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmptarget/TestOpenMPTarget_SubView_c04.cpp","size":2202,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmptarget/TestOpenMPTarget_SubView_c10.cpp","size":2214,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmptarget/TestOpenMPTarget_SubView_c11.cpp","size":2259,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmptarget/TestOpenMPTarget_Team.cpp","size":3236,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmptarget/TestOpenMPTarget_ViewAPI_e.cpp","size":2048,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmptarget/TestOpenMPTarget_MDRange_d.cpp","size":2048,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmptarget/TestOpenMPTarget_Complex.cpp","size":2046,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmptarget/TestOpenMPTarget_ViewAPI_d.cpp","size":2048,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmptarget/TestOpenMPTarget_TeamReductionScan.cpp","size":3681,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmptarget/TestOpenMPTarget_Reducers_a.cpp","size":2049,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmptarget/TestOpenMPTarget_SubView_c02.cpp","size":2242,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmptarget/TestOpenMPTarget_AtomicOperations_longlongint.cpp","size":2066,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmptarget/TestOpenMPTarget_ViewMapping_subview.cpp","size":2059,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmptarget/TestOpenMPTarget_SubView_b.cpp","size":2817,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmptarget/TestOpenMPTarget_Reducers_c.cpp","size":2049,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmptarget/TestOpenMPTarget_AtomicOperations_unsignedlongint.cpp","size":2070,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmptarget/TestOpenMPTarget_SubView_c09.cpp","size":2269,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmptarget/TestOpenMPTarget_SubView_c06.cpp","size":2259,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmptarget/TestOpenMPTarget_Scan.cpp","size":2043,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmptarget/TestOpenMPTarget_ViewAPI_a.cpp","size":2048,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmptarget/TestOpenMPTarget_Init.cpp","size":2114,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmptarget/TestOpenMPTarget_SharedAlloc.cpp","size":2239,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmptarget/TestOpenMPTarget_AtomicOperations_float.cpp","size":2060,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmptarget/TestOpenMPTarget_AtomicOperations_int.cpp","size":2058,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmptarget/TestOpenMPTarget_SubView_c07.cpp","size":2212,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmptarget/TestOpenMPTarget_AtomicOperations_double.cpp","size":2061,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmptarget/TestOpenMPTarget_SubView_c01.cpp","size":2197,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmptarget/TestOpenMPTarget_ViewMapping_b.cpp","size":2053,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmptarget/TestOpenMPTarget_AtomicOperations_unsignedint.cpp","size":2066,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmptarget/TestOpenMPTarget_SubView_c05.cpp","size":2246,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmptarget/TestOpenMPTarget_ViewMapping_a.cpp","size":2053,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmptarget/TestOpenMPTarget_AtomicViews.cpp","size":2050,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmptarget/TestOpenMPTarget_AtomicOperations_longint.cpp","size":2062,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmptarget/TestOpenMPTarget_Reducers_b.cpp","size":2049,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmptarget/TestOpenMPTarget_MDRange_a.cpp","size":2048,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmptarget/TestOpenMPTarget_Reductions.cpp","size":2079,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmptarget/TestOpenMPTarget_ViewOfClass.cpp","size":2051,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmptarget/TestOpenMPTarget_MDRange_c.cpp","size":2048,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmptarget/TestOpenMPTarget_TeamScratch.cpp","size":3149,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmptarget/TestOpenMPTarget_ViewAPI_c.cpp","size":2048,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/UnitTest_PushFinalizeHook.cpp","size":4836,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/serial/TestSerial_RangePolicy.cpp","size":2032,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/serial/TestSerial_SubView_c08.cpp","size":2245,"last_modified":1529436749}{"name":"./kokkos/core/unit_test/serial/TestSerial_AtomicOperations_int.cpp","size":2046,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/serial/TestSerial_Other.cpp","size":2194,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/serial/TestSerial_AtomicOperations_unsignedint.cpp","size":2054,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/serial/TestSerial_SubView_c05.cpp","size":2228,"last_modified":1529436749}{"name":"./kokkos/core/unit_test/serial/TestSerial_Reductions.cpp","size":2067,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/serial/TestSerial_ViewAPI_c.cpp","size":2036,"last_modified":1529436749}{"name":"./kokkos/core/unit_test/serial/TestSerial_SubView_c_all.cpp","size":585,"last_modified":1529436749}{"name":"./kokkos/core/unit_test/serial/TestSerial_MDRange_b.cpp","size":2036,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/serial/TestSerial_SubView_c02.cpp","size":2230,"last_modified":1529436749}{"name":"./kokkos/core/unit_test/serial/TestSerial_SubView_c13.cpp","size":2210,"last_modified":1529436749}{"name":"./kokkos/core/unit_test/serial/TestSerial_MDRange_a.cpp","size":2036,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/serial/TestSerial_SubView_c10.cpp","size":2202,"last_modified":1529436749}{"name":"./kokkos/core/unit_test/serial/TestSerial_SubView_c11.cpp","size":2247,"last_modified":1529436749}{"name":"./kokkos/core/unit_test/serial/TestSerial_Reducers_a.cpp","size":2037,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/serial/TestSerial_TeamReductionScan.cpp","size":3669,"last_modified":1529436749}{"name":"./kokkos/core/unit_test/serial/TestSerial_Crs.cpp","size":2030,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/serial/TestSerial_AtomicViews.cpp","size":2038,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/serial/TestSerial_Reducers_c.cpp","size":2037,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/serial/TestSerial_Task.cpp","size":2040,"last_modified":1529436749}{"name":"./kokkos/core/unit_test/serial/TestSerial_ViewAPI_a.cpp","size":2036,"last_modified":1529436749}{"name":"./kokkos/core/unit_test/serial/TestSerial_MDRange_e.cpp","size":2036,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/serial/TestSerial_Complex.cpp","size":2034,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/serial/TestSerial_SubView_c04.cpp","size":2190,"last_modified":1529436749}{"name":"./kokkos/core/unit_test/serial/TestSerial_ViewOfClass.cpp","size":2039,"last_modified":1529436749}{"name":"./kokkos/core/unit_test/serial/TestSerial_Reducers_b.cpp","size":2037,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/serial/TestSerial_AtomicOperations_unsignedlongint.cpp","size":2058,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/serial/TestSerial_Team.cpp","size":3224,"last_modified":1529436749}{"name":"./kokkos/core/unit_test/serial/TestSerial_AtomicOperations_longint.cpp","size":2050,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/serial/TestSerial_Reducers_d.cpp","size":2037,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/serial/TestSerial_SubView_c07.cpp","size":2200,"last_modified":1529436749}{"name":"./kokkos/core/unit_test/serial/TestSerial_TeamScratch.cpp","size":3137,"last_modified":1529436749}{"name":"./kokkos/core/unit_test/serial/TestSerial_ViewAPI_d.cpp","size":2036,"last_modified":1529436749}{"name":"./kokkos/core/unit_test/serial/TestSerial_ViewMapping_a.cpp","size":2041,"last_modified":1529436749}{"name":"./kokkos/core/unit_test/serial/TestSerial_Scan.cpp","size":2031,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/serial/TestSerial_SubView_c09.cpp","size":2257,"last_modified":1529436749}{"name":"./kokkos/core/unit_test/serial/TestSerial_MDRange_c.cpp","size":2036,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/serial/TestSerial_SubView_b.cpp","size":2805,"last_modified":1529436749}{"name":"./kokkos/core/unit_test/serial/TestSerial_AtomicOperations_float.cpp","size":2048,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/serial/TestSerial_AtomicOperations_double.cpp","size":2049,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/serial/TestSerial_SharedAlloc.cpp","size":2186,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/serial/TestSerial_Init.cpp","size":2102,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/serial/TestSerial_AtomicOperations_longlongint.cpp","size":2054,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/serial/TestSerial_MDRange_d.cpp","size":2036,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/serial/TestSerial_SubView_c06.cpp","size":2247,"last_modified":1529436749}{"name":"./kokkos/core/unit_test/serial/TestSerial_ViewAPI_b.cpp","size":2036,"last_modified":1529436749}{"name":"./kokkos/core/unit_test/serial/TestSerial_SubView_c01.cpp","size":2185,"last_modified":1529436749}{"name":"./kokkos/core/unit_test/serial/TestSerial_Atomics.cpp","size":2034,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/serial/TestSerial_ViewAPI_e.cpp","size":2036,"last_modified":1529436749}{"name":"./kokkos/core/unit_test/serial/TestSerial_ViewMapping_subview.cpp","size":2047,"last_modified":1529436749}{"name":"./kokkos/core/unit_test/serial/TestSerial_WorkGraph.cpp","size":2034,"last_modified":1529436749}{"name":"./kokkos/core/unit_test/serial/TestSerial_ViewMapping_b.cpp","size":2041,"last_modified":1529436749}{"name":"./kokkos/core/unit_test/serial/TestSerial_View_64bit.cpp","size":2037,"last_modified":1529436749}{"name":"./kokkos/core/unit_test/serial/TestSerial_SubView_c12.cpp","size":2259,"last_modified":1529436749}{"name":"./kokkos/core/unit_test/serial/TestSerial_SubView_a.cpp","size":3315,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/serial/TestSerial_SubView_c03.cpp","size":2242,"last_modified":1529436749}{"name":"./kokkos/core/unit_test/rocm/TestROCm_SubView_c10.cpp","size":2208,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/rocm/TestROCm_SubView_c08.cpp","size":2251,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/rocm/TestROCm_SubView_a.cpp","size":3311,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/rocm/TestROCm_ViewMapping_subview.cpp","size":2043,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/rocm/TestROCm_TeamScratch.cpp","size":3133,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/rocm/TestROCm_AtomicOperations_double.cpp","size":2045,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/rocm/TestROCm_RangePolicy.cpp","size":2028,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/rocm/TestROCm_AtomicOperations_longlongint.cpp","size":2050,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/rocm/TestROCmHostPinned_View_64bit.cpp","size":2043,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/rocm/TestROCm_SubView_c12.cpp","size":2265,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/rocm/TestROCmHostPinned_ViewAPI_d.cpp","size":2042,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/rocm/TestROCmHostPinned_SharedAlloc.cpp","size":2208,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/rocm/TestROCm_Init.cpp","size":2098,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/rocm/TestROCm_Reductions.cpp","size":2063,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/rocm/TestROCm_ViewAPI_b.cpp","size":2032,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/rocm/TestROCmHostPinned_ViewAPI_c.cpp","size":2042,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/rocm/TestROCm_MDRange_c.cpp","size":2032,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/rocm/TestROCm_Reducers_c.cpp","size":2033,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/rocm/TestROCm_MDRange_a.cpp","size":2032,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/rocm/TestROCm_SubView_c07.cpp","size":2206,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/rocm/TestROCm_Scan.cpp","size":2027,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/rocm/TestROCm_TeamReductionScan.cpp","size":3714,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/rocm/TestROCm_Reducers_a.cpp","size":2033,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/rocm/TestROCm_MDRange_b.cpp","size":2032,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/rocm/TestROCm_SubView_c01.cpp","size":2191,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/rocm/TestROCmHostPinned_ViewMapping_subview.cpp","size":2053,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/rocm/TestROCm_SubView_b.cpp","size":2801,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/rocm/TestROCm_SubView_c06.cpp","size":2253,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/rocm/TestROCm_AtomicOperations_int.cpp","size":2042,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/rocm/TestROCm_SharedAlloc.cpp","size":2215,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/rocm/TestROCmHostPinned_ViewMapping_b.cpp","size":2047,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/rocm/TestROCmHostPinned_ViewMapping_a.cpp","size":2047,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/rocm/TestROCm_SubView_c04.cpp","size":2196,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/rocm/TestROCm_MDRange_e.cpp","size":2032,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/rocm/TestROCm_SubView_c02.cpp","size":2236,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/rocm/TestROCm_AtomicViews.cpp","size":2034,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/rocm/TestROCm_SubView_c05.cpp","size":2241,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/rocm/TestROCm_SubView_c11.cpp","size":2253,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/rocm/TestROCmHostPinned_ViewAPI_e.cpp","size":2042,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/rocm/TestROCm_ViewAPI_c.cpp","size":2032,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/rocm/TestROCm_Other.cpp","size":2191,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/rocm/TestROCm_ViewAPI_d.cpp","size":2032,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/rocm/TestROCm_Reducers_d.cpp","size":2033,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/rocm/TestROCm_ViewAPI_a.cpp","size":2032,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/rocm/TestROCm_AtomicOperations_unsignedint.cpp","size":2050,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/rocm/TestROCm_AtomicOperations_longint.cpp","size":2046,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/rocm/TestROCm_AtomicOperations_unsignedlongint.cpp","size":2054,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/rocm/TestROCmHostPinned_ViewAPI_b.cpp","size":2042,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/rocm/TestROCm_AtomicOperations_float.cpp","size":2044,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/rocm/TestROCm_ViewMapping_a.cpp","size":2037,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/rocm/TestROCm_Atomics.cpp","size":2030,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/rocm/TestROCmHostPinned_ViewAPI_a.cpp","size":2042,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/rocm/TestROCm_ViewOfClass.cpp","size":2035,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/rocm/TestROCm_All.cpp","size":1354,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/rocm/TestROCm_SubView_c09.cpp","size":2263,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/rocm/TestROCm_ViewMapping_b.cpp","size":2037,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/rocm/TestROCm_MDRange_d.cpp","size":2032,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/rocm/TestROCm_Reducers_b.cpp","size":2033,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/rocm/TestROCm_Team.cpp","size":3220,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/rocm/TestROCm_Spaces.cpp","size":7286,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/rocm/TestROCm_Complex.cpp","size":2030,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/rocm/TestROCm_ViewAPI_e.cpp","size":2032,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/rocm/TestROCm_SubView_c03.cpp","size":2248,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/default/TestDefaultDeviceType_c2.cpp","size":2379,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/default/TestDefaultDeviceTypeInit_7.cpp","size":86,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/default/TestDefaultDeviceTypeInit_14.cpp","size":86,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/default/TestDefaultDeviceType_b2.cpp","size":2336,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/default/TestDefaultDeviceTypeInit_12.cpp","size":86,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/default/TestDefaultDeviceTypeResize.cpp","size":2261,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/default/TestDefaultDeviceType_a3.cpp","size":2337,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/default/TestDefaultDeviceTypeInit_10.cpp","size":86,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/default/TestDefaultDeviceType_b1.cpp","size":2336,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/default/TestDefaultDeviceTypeInit_5.cpp","size":86,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/default/TestDefaultDeviceTypeInit_11.cpp","size":86,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/default/TestDefaultDeviceType_b3.cpp","size":2336,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/default/TestDefaultDeviceTypeInit_4.cpp","size":86,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/default/TestDefaultDeviceTypeInit_8.cpp","size":86,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/default/TestDefaultDeviceType_c1.cpp","size":2379,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/default/TestDefaultDeviceType_a2.cpp","size":2337,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/default/TestDefaultDeviceType_a1.cpp","size":2337,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/default/TestDefaultDeviceTypeInit_6.cpp","size":86,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/default/TestDefaultDeviceType_d.cpp","size":2621,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/default/TestDefaultDeviceTypeInit_16.cpp","size":86,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/default/TestDefaultDeviceTypeInit_3.cpp","size":86,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/default/TestDefaultDeviceType.cpp","size":2787,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/default/TestDefaultDeviceTypeInit_2.cpp","size":86,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/default/TestDefaultDeviceTypeInit_15.cpp","size":86,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/default/TestDefaultDeviceType_c3.cpp","size":2379,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/default/TestDefaultDeviceTypeInit_1.cpp","size":86,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/default/TestDefaultDeviceTypeInit_13.cpp","size":86,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/default/TestDefaultDeviceTypeInit_9.cpp","size":86,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmp/TestOpenMP_AtomicViews.cpp","size":2038,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmp/TestOpenMP_Scan.cpp","size":2031,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmp/TestOpenMP_SubView_c08.cpp","size":2245,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmp/TestOpenMP_Team.cpp","size":3224,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmp/TestOpenMP_AtomicOperations_double.cpp","size":2049,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmp/TestOpenMP_Complex.cpp","size":2034,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmp/TestOpenMP_Reductions.cpp","size":2067,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmp/TestOpenMP_SubView_c04.cpp","size":2190,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmp/TestOpenMP_Reducers_d.cpp","size":2037,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmp/TestOpenMP_Task.cpp","size":2040,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmp/TestOpenMP_AtomicOperations_unsignedlongint.cpp","size":2058,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmp/TestOpenMP_TeamScratch.cpp","size":3137,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmp/TestOpenMP_TeamReductionScan.cpp","size":3669,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmp/TestOpenMP_SubView_c10.cpp","size":2202,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmp/TestOpenMP_ViewMapping_b.cpp","size":2041,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmp/TestOpenMP_SubView_c_all.cpp","size":585,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmp/TestOpenMP_MDRange_e.cpp","size":2036,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmp/TestOpenMP_SubView_c01.cpp","size":2185,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmp/TestOpenMP_MDRange_a.cpp","size":2036,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmp/TestOpenMP_SubView_a.cpp","size":3315,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmp/TestOpenMP_AtomicOperations_int.cpp","size":2046,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmp/TestOpenMP_MDRange_c.cpp","size":2036,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmp/TestOpenMP_Reducers_b.cpp","size":2037,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmp/TestOpenMP_MDRange_d.cpp","size":2036,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmp/TestOpenMP_ViewAPI_a.cpp","size":2036,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmp/TestOpenMP_Init.cpp","size":2102,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmp/TestOpenMP_SubView_b.cpp","size":2805,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmp/TestOpenMP_Atomics.cpp","size":2034,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmp/TestOpenMP_Reducers_c.cpp","size":2037,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmp/TestOpenMP_AtomicOperations_float.cpp","size":2048,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmp/TestOpenMP_ViewAPI_e.cpp","size":2036,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmp/TestOpenMP_SubView_c12.cpp","size":2259,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmp/TestOpenMP_ViewAPI_d.cpp","size":2036,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmp/TestOpenMP_RangePolicy.cpp","size":2032,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmp/TestOpenMP_Reducers_a.cpp","size":2037,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmp/TestOpenMP_SubView_c05.cpp","size":2228,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmp/TestOpenMP_SubView_c09.cpp","size":2257,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmp/TestOpenMP_SubView_c13.cpp","size":2210,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmp/TestOpenMP_View_64bit.cpp","size":2037,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmp/TestOpenMP_AtomicOperations_longlongint.cpp","size":2054,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmp/TestOpenMP_UniqueToken.cpp","size":2037,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmp/TestOpenMP_SharedAlloc.cpp","size":2186,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmp/TestOpenMP_ViewOfClass.cpp","size":2039,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmp/TestOpenMP_Crs.cpp","size":2030,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmp/TestOpenMP_ViewAPI_b.cpp","size":2036,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmp/TestOpenMP_SubView_c02.cpp","size":2230,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmp/TestOpenMP_AtomicOperations_unsignedint.cpp","size":2054,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmp/TestOpenMP_AtomicOperations_longint.cpp","size":2050,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmp/TestOpenMP_SubView_c03.cpp","size":2242,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmp/TestOpenMP_ViewMapping_subview.cpp","size":2047,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmp/TestOpenMP_MDRange_b.cpp","size":2036,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmp/TestOpenMP_SubView_c06.cpp","size":2247,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmp/TestOpenMP_InterOp.cpp","size":2806,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmp/TestOpenMP_SubView_c11.cpp","size":2247,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmp/TestOpenMP_ViewAPI_c.cpp","size":2036,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmp/TestOpenMP_WorkGraph.cpp","size":2034,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmp/TestOpenMP_ViewMapping_a.cpp","size":2041,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmp/TestOpenMP_Other.cpp","size":4664,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/openmp/TestOpenMP_SubView_c07.cpp","size":2200,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/UnitTestMain.cpp","size":2119,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/cuda/TestCudaUVM_ViewMapping_a.cpp","size":2040,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/cuda/TestCuda_AtomicOperations_int.cpp","size":2042,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/cuda/TestCuda_ViewAPI_b.cpp","size":2032,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/cuda/TestCuda_Crs.cpp","size":2026,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/cuda/TestCudaHostPinned_ViewAPI_b.cpp","size":2042,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/cuda/TestCuda_View_64bit.cpp","size":2033,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/cuda/TestCuda_Spaces.cpp","size":13177,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/cuda/TestCuda_AtomicViews.cpp","size":2034,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/cuda/TestCuda_Reductions.cpp","size":2063,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/cuda/TestCuda_Reducers_d.cpp","size":2033,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/cuda/TestCuda_ViewAPI_a.cpp","size":2032,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/cuda/TestCuda_AtomicOperations_longlongint.cpp","size":2050,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/cuda/TestCudaHostPinned_ViewMapping_a.cpp","size":2047,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/cuda/TestCuda_SubView_c10.cpp","size":2201,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/cuda/TestCudaUVM_SharedAlloc.cpp","size":2201,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/cuda/TestCuda_ViewAPI_e.cpp","size":2032,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/cuda/TestCuda_MDRange_a.cpp","size":2032,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/cuda/TestCuda_Reducers_a.cpp","size":2033,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/cuda/TestCudaHostPinned_ViewMapping_subview.cpp","size":2053,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/cuda/TestCuda_MDRange_b.cpp","size":2032,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/cuda/TestCuda_ViewAPI_d.cpp","size":2032,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/cuda/TestCuda_AtomicOperations_longint.cpp","size":2046,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/cuda/TestCuda_Init.cpp","size":2098,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/cuda/TestCudaUVM_ViewAPI_d.cpp","size":2035,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/cuda/TestCuda_SubView_c09.cpp","size":2256,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/cuda/TestCuda_AtomicOperations_float.cpp","size":2044,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/cuda/TestCudaUVM_ViewMapping_subview.cpp","size":2046,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/cuda/TestCudaHostPinned_ViewAPI_c.cpp","size":2042,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/cuda/TestCudaUVM_ViewAPI_a.cpp","size":2035,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/cuda/TestCuda_InterOp.cpp","size":2904,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/cuda/TestCuda_Reducers_b.cpp","size":2033,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/cuda/TestCuda_SubView_c12.cpp","size":2258,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/cuda/TestCuda_SubView_b.cpp","size":2804,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/cuda/TestCudaHostPinned_ViewAPI_e.cpp","size":2042,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/cuda/TestCuda_SubView_c02.cpp","size":2229,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/cuda/TestCudaUVM_ViewAPI_e.cpp","size":2035,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/cuda/TestCuda_SubView_c08.cpp","size":2244,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/cuda/TestCuda_SubView_c03.cpp","size":2241,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/cuda/TestCuda_SubView_a.cpp","size":3314,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/cuda/TestCuda_SubView_c06.cpp","size":2246,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/cuda/TestCuda_SubView_c13.cpp","size":2209,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/cuda/TestCuda_MDRange_e.cpp","size":2032,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/cuda/TestCuda_UniqueToken.cpp","size":2033,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/cuda/TestCuda_AtomicOperations_unsignedint.cpp","size":2050,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/cuda/TestCuda_ViewOfClass.cpp","size":2035,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/cuda/TestCuda_AtomicOperations_unsignedlongint.cpp","size":2054,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/cuda/TestCudaUVM_ViewAPI_b.cpp","size":2035,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/cuda/TestCuda_ViewMapping_a.cpp","size":2037,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/cuda/TestCudaUVM_ViewAPI_c.cpp","size":2035,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/cuda/TestCuda_ViewMapping_b.cpp","size":2037,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/cuda/TestCuda_Reducers_c.cpp","size":2033,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/cuda/TestCudaHostPinned_ViewAPI_d.cpp","size":2042,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/cuda/TestCuda_MDRange_d.cpp","size":2032,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/cuda/TestCudaHostPinned_ViewAPI_a.cpp","size":2042,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/cuda/TestCuda_Complex.cpp","size":2030,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/cuda/TestCudaHostPinned_ViewMapping_b.cpp","size":2047,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/cuda/TestCuda_SubView_c_all.cpp","size":533,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/cuda/TestCuda_AtomicOperations_double.cpp","size":2045,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/cuda/TestCuda_TeamScratch.cpp","size":3133,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/cuda/TestCudaHostPinned_SharedAlloc.cpp","size":2208,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/cuda/TestCuda_RangePolicy.cpp","size":2028,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/cuda/TestCuda_SubView_c05.cpp","size":2234,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/cuda/TestCuda_SubView_c11.cpp","size":2246,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/cuda/TestCuda_SubView_c04.cpp","size":2189,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/cuda/TestCuda_Task.cpp","size":2036,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/cuda/TestCuda_WorkGraph.cpp","size":2030,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/cuda/TestCuda_ViewAPI_c.cpp","size":2032,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/cuda/TestCuda_SubView_c07.cpp","size":2199,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/cuda/TestCuda_MDRange_c.cpp","size":2032,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/cuda/TestCuda_Other.cpp","size":2190,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/cuda/TestCuda_ViewMapping_subview.cpp","size":2043,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/cuda/TestCuda_SharedAlloc.cpp","size":2201,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/cuda/TestCuda_SubView_c01.cpp","size":2184,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/cuda/TestCuda_TeamReductionScan.cpp","size":3719,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/cuda/TestCudaUVM_ViewMapping_b.cpp","size":2040,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/cuda/TestCuda_Atomics.cpp","size":2030,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/cuda/TestCuda_Team.cpp","size":3220,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/cuda/TestCuda_Scan.cpp","size":2027,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/TestHWLOC.cpp","size":2494,"last_modified":1529436746}{"name":"./kokkos/core/unit_test/config/results/HSW_Qthreads_KokkosCore_config.h","size":630,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/Pascal61_ROCm_KokkosCore_config.h","size":571,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/Kepler35_ROCm_KokkosCore_config.h","size":571,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/Maxwell53_Qthreads_KokkosCore_config.h","size":544,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/ARMv81_Pthread_KokkosCore_config.h","size":572,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/BDW_OpenMP_KokkosCore_config.h","size":682,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/WSM_Serial_KokkosCore_config.h","size":629,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/Pascal61_Serial_KokkosCore_config.h","size":542,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/SKX_OpenMP_KokkosCore_config.h","size":688,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/SKX_Cuda_KokkosCore_config.h","size":715,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/Kepler37_Serial_KokkosCore_config.h","size":542,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/ARMv80_Qthreads_KokkosCore_config.h","size":573,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/Power9_OpenMP_KokkosCore_config.h","size":633,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/Maxwell53_Pthread_KokkosCore_config.h","size":543,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/ARMv81_OpenMP_KokkosCore_config.h","size":571,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/AMDAVX_ROCm_KokkosCore_config.h","size":597,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/Kepler35_OpenMP_KokkosCore_config.h","size":542,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/Maxwell50_Qthreads_KokkosCore_config.h","size":544,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/Pascal60_Pthread_KokkosCore_config.h","size":543,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/Kepler30_ROCm_KokkosCore_config.h","size":571,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/Power7_OpenMP_KokkosCore_config.h","size":633,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/Maxwell50_Serial_KokkosCore_config.h","size":542,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/Power9_Qthreads_KokkosCore_config.h","size":635,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/KNC_Cuda_KokkosCore_config.h","size":651,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/BGQ_ROCm_KokkosCore_config.h","size":571,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/BDW_Qthreads_KokkosCore_config.h","size":684,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/AMDAVX_Qthreads_KokkosCore_config.h","size":570,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/Power8_Qthreads_KokkosCore_config.h","size":635,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/Maxwell53_Cuda_KokkosCore_config.h","size":631,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/Kepler30_Serial_KokkosCore_config.h","size":542,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/KNC_ROCm_KokkosCore_config.h","size":653,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/SKX_Pthread_KokkosCore_config.h","size":689,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/AMDAVX_Cuda_KokkosCore_config.h","size":595,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/ARMv80_ROCm_KokkosCore_config.h","size":600,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/BGQ_Qthreads_KokkosCore_config.h","size":544,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/Maxwell_Cuda_KokkosCore_config.h","size":631,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/ARMv80_Pthread_KokkosCore_config.h","size":572,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/BDW_ROCm_KokkosCore_config.h","size":711,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/Kepler_OpenMP_KokkosCore_config.h","size":542,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/Kepler37_Qthreads_KokkosCore_config.h","size":544,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/Kepler30_Qthreads_KokkosCore_config.h","size":544,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/Kepler_ROCm_KokkosCore_config.h","size":571,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/Maxwell_Serial_KokkosCore_config.h","size":542,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/Maxwell52_ROCm_KokkosCore_config.h","size":571,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/BDW_Serial_KokkosCore_config.h","size":682,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/Pascal60_ROCm_KokkosCore_config.h","size":571,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/Kepler_Cuda_KokkosCore_config.h","size":629,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/WSM_Cuda_KokkosCore_config.h","size":656,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/AMDAVX_Serial_KokkosCore_config.h","size":568,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/None_Serial_KokkosCore_config.h","size":542,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/Pascal60_OpenMP_KokkosCore_config.h","size":542,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/Maxwell52_Serial_KokkosCore_config.h","size":542,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/HSW_Pthread_KokkosCore_config.h","size":629,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/Power9_ROCm_KokkosCore_config.h","size":662,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/KNC_Pthread_KokkosCore_config.h","size":625,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/ARMv8-ThunderX_Pthread_KokkosCore_config.h","size":609,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/KNC_OpenMP_KokkosCore_config.h","size":624,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/Maxwell_ROCm_KokkosCore_config.h","size":571,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/Maxwell52_Pthread_KokkosCore_config.h","size":543,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/KNL_Pthread_KokkosCore_config.h","size":634,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/Pascal60_Serial_KokkosCore_config.h","size":542,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/Power7_Serial_KokkosCore_config.h","size":633,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/Maxwell53_OpenMP_KokkosCore_config.h","size":542,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/Kepler37_OpenMP_KokkosCore_config.h","size":542,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/Power7_ROCm_KokkosCore_config.h","size":662,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/Power7_Pthread_KokkosCore_config.h","size":634,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/None_Qthreads_KokkosCore_config.h","size":544,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/SNB_Serial_KokkosCore_config.h","size":627,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/Maxwell52_OpenMP_KokkosCore_config.h","size":542,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/Power7_Qthreads_KokkosCore_config.h","size":635,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/WSM_OpenMP_KokkosCore_config.h","size":629,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/ARMv80_Serial_KokkosCore_config.h","size":571,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/Power8_Serial_KokkosCore_config.h","size":633,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/ARMv81_ROCm_KokkosCore_config.h","size":600,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/ARMv81_Qthreads_KokkosCore_config.h","size":573,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/KNC_Qthreads_KokkosCore_config.h","size":626,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/SKX_Serial_KokkosCore_config.h","size":688,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/HSW_Serial_KokkosCore_config.h","size":628,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/Maxwell50_Pthread_KokkosCore_config.h","size":543,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/Pascal61_Pthread_KokkosCore_config.h","size":543,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/Power8_Pthread_KokkosCore_config.h","size":634,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/None_Cuda_KokkosCore_config.h","size":569,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/Maxwell52_Cuda_KokkosCore_config.h","size":631,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/SKX_Qthreads_KokkosCore_config.h","size":690,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/Pascal61_OpenMP_KokkosCore_config.h","size":542,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/Kepler35_Cuda_KokkosCore_config.h","size":629,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/Pascal60_Cuda_KokkosCore_config.h","size":629,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/HSW_Cuda_KokkosCore_config.h","size":655,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/SKX_ROCm_KokkosCore_config.h","size":717,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/SNB_Pthread_KokkosCore_config.h","size":628,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/Kepler_Pthread_KokkosCore_config.h","size":543,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/AMDAVX_OpenMP_KokkosCore_config.h","size":568,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/Pascal60_Qthreads_KokkosCore_config.h","size":544,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/Maxwell50_Cuda_KokkosCore_config.h","size":631,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/AMDAVX_Pthread_KokkosCore_config.h","size":569,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/WSM_ROCm_KokkosCore_config.h","size":658,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/Maxwell_OpenMP_KokkosCore_config.h","size":542,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/BGQ_Serial_KokkosCore_config.h","size":542,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/Kepler_Serial_KokkosCore_config.h","size":542,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/BGQ_Pthread_KokkosCore_config.h","size":543,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/Kepler32_Pthread_KokkosCore_config.h","size":543,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/Maxwell53_ROCm_KokkosCore_config.h","size":571,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/Power9_Serial_KokkosCore_config.h","size":633,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/Maxwell_Qthreads_KokkosCore_config.h","size":544,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/ARMv8-ThunderX_Serial_KokkosCore_config.h","size":608,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/ARMv80_Cuda_KokkosCore_config.h","size":598,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/BDW_Pthread_KokkosCore_config.h","size":683,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/ARMv8-ThunderX_ROCm_KokkosCore_config.h","size":637,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/Kepler35_Qthreads_KokkosCore_config.h","size":544,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/Maxwell_Pthread_KokkosCore_config.h","size":543,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/Kepler37_Pthread_KokkosCore_config.h","size":543,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/Kepler30_Cuda_KokkosCore_config.h","size":629,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/Kepler32_Cuda_KokkosCore_config.h","size":629,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/Kepler32_OpenMP_KokkosCore_config.h","size":542,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/BDW_Cuda_KokkosCore_config.h","size":709,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/Kepler35_Serial_KokkosCore_config.h","size":542,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/ARMv8-ThunderX_Cuda_KokkosCore_config.h","size":635,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/Kepler30_Pthread_KokkosCore_config.h","size":543,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/Kepler37_ROCm_KokkosCore_config.h","size":571,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/Power8_ROCm_KokkosCore_config.h","size":662,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/WSM_Pthread_KokkosCore_config.h","size":630,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/ARMv81_Cuda_KokkosCore_config.h","size":598,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/SNB_Qthreads_KokkosCore_config.h","size":629,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/ARMv8-ThunderX_Qthreads_KokkosCore_config.h","size":610,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/SNB_OpenMP_KokkosCore_config.h","size":627,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/Kepler37_Cuda_KokkosCore_config.h","size":629,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/SNB_ROCm_KokkosCore_config.h","size":656,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/BGQ_OpenMP_KokkosCore_config.h","size":542,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/Kepler35_Pthread_KokkosCore_config.h","size":543,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/ARMv80_OpenMP_KokkosCore_config.h","size":571,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/Maxwell50_ROCm_KokkosCore_config.h","size":571,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/None_OpenMP_KokkosCore_config.h","size":542,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/Power8_OpenMP_KokkosCore_config.h","size":633,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/Pascal61_Qthreads_KokkosCore_config.h","size":544,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/Maxwell52_Qthreads_KokkosCore_config.h","size":544,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/SNB_Cuda_KokkosCore_config.h","size":654,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/KNL_Qthreads_KokkosCore_config.h","size":635,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/KNL_ROCm_KokkosCore_config.h","size":662,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/Power9_Pthread_KokkosCore_config.h","size":634,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/None_Pthread_KokkosCore_config.h","size":543,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/Kepler32_ROCm_KokkosCore_config.h","size":571,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/Maxwell53_Serial_KokkosCore_config.h","size":542,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/KNL_Cuda_KokkosCore_config.h","size":660,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/Maxwell50_OpenMP_KokkosCore_config.h","size":542,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/None_ROCm_KokkosCore_config.h","size":571,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/Power7_Cuda_KokkosCore_config.h","size":660,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/ARMv81_Serial_KokkosCore_config.h","size":571,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/KNL_OpenMP_KokkosCore_config.h","size":633,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/Kepler32_Qthreads_KokkosCore_config.h","size":544,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/HSW_OpenMP_KokkosCore_config.h","size":628,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/Kepler_Qthreads_KokkosCore_config.h","size":544,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/KNC_Serial_KokkosCore_config.h","size":624,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/ARMv8-ThunderX_OpenMP_KokkosCore_config.h","size":608,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/Pascal61_Cuda_KokkosCore_config.h","size":629,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/Kepler32_Serial_KokkosCore_config.h","size":542,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/WSM_Qthreads_KokkosCore_config.h","size":631,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/Power8_Cuda_KokkosCore_config.h","size":660,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/Kepler30_OpenMP_KokkosCore_config.h","size":542,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/HSW_ROCm_KokkosCore_config.h","size":657,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/KNL_Serial_KokkosCore_config.h","size":633,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/Power9_Cuda_KokkosCore_config.h","size":660,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/config/results/BGQ_Cuda_KokkosCore_config.h","size":569,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/threads/TestThreads_AtomicOperations_unsignedlongint.cpp","size":2060,"last_modified":1529436749}{"name":"./kokkos/core/unit_test/threads/TestThreads_Other.cpp","size":2196,"last_modified":1529436749}{"name":"./kokkos/core/unit_test/threads/TestThreads_AtomicViews.cpp","size":2040,"last_modified":1529436749}{"name":"./kokkos/core/unit_test/threads/TestThreads_AtomicOperations_longlongint.cpp","size":2056,"last_modified":1529436749}{"name":"./kokkos/core/unit_test/threads/TestThreads_Reducers_a.cpp","size":2039,"last_modified":1529436749}{"name":"./kokkos/core/unit_test/threads/TestThreads_Team.cpp","size":3226,"last_modified":1529436749}{"name":"./kokkos/core/unit_test/threads/TestThreads_View_64bit.cpp","size":2039,"last_modified":1529436749}{"name":"./kokkos/core/unit_test/threads/TestThreads_ViewMapping_a.cpp","size":2043,"last_modified":1529436749}{"name":"./kokkos/core/unit_test/threads/TestThreads_MDRange_c.cpp","size":2038,"last_modified":1529436749}{"name":"./kokkos/core/unit_test/threads/TestThreads_MDRange_a.cpp","size":2038,"last_modified":1529436749}{"name":"./kokkos/core/unit_test/threads/TestThreads_ViewAPI_d.cpp","size":2038,"last_modified":1529436749}{"name":"./kokkos/core/unit_test/threads/TestThreads_MDRange_e.cpp","size":2038,"last_modified":1529436749}{"name":"./kokkos/core/unit_test/threads/TestThreads_SubView_c13.cpp","size":2212,"last_modified":1529436749}{"name":"./kokkos/core/unit_test/threads/TestThreads_AtomicOperations_float.cpp","size":2050,"last_modified":1529436749}{"name":"./kokkos/core/unit_test/threads/TestThreads_ViewMapping_b.cpp","size":2043,"last_modified":1529436749}{"name":"./kokkos/core/unit_test/threads/TestThreads_SubView_c03.cpp","size":2244,"last_modified":1529436749}{"name":"./kokkos/core/unit_test/threads/TestThreads_SubView_c11.cpp","size":2249,"last_modified":1529436749}{"name":"./kokkos/core/unit_test/threads/TestThreads_SubView_c02.cpp","size":2232,"last_modified":1529436749}{"name":"./kokkos/core/unit_test/threads/TestThreads_Reducers_b.cpp","size":2039,"last_modified":1529436749}{"name":"./kokkos/core/unit_test/threads/TestThreads_ViewAPI_e.cpp","size":2038,"last_modified":1529436749}{"name":"./kokkos/core/unit_test/threads/TestThreads_Reducers_c.cpp","size":2039,"last_modified":1529436749}{"name":"./kokkos/core/unit_test/threads/TestThreads_SubView_c10.cpp","size":2204,"last_modified":1529436749}{"name":"./kokkos/core/unit_test/threads/TestThreads_SubView_c04.cpp","size":2192,"last_modified":1529436749}{"name":"./kokkos/core/unit_test/threads/TestThreads_ViewAPI_b.cpp","size":2038,"last_modified":1529436749}{"name":"./kokkos/core/unit_test/threads/TestThreads_SharedAlloc.cpp","size":2188,"last_modified":1529436749}{"name":"./kokkos/core/unit_test/threads/TestThreads_SubView_c06.cpp","size":2249,"last_modified":1529436749}{"name":"./kokkos/core/unit_test/threads/TestThreads_SubView_c01.cpp","size":2187,"last_modified":1529436749}{"name":"./kokkos/core/unit_test/threads/TestThreads_ViewAPI_a.cpp","size":2038,"last_modified":1529436749}{"name":"./kokkos/core/unit_test/threads/TestThreads_SubView_c08.cpp","size":2247,"last_modified":1529436749}{"name":"./kokkos/core/unit_test/threads/TestThreads_Atomics.cpp","size":2036,"last_modified":1529436749}{"name":"./kokkos/core/unit_test/threads/TestThreads_WorkGraph.cpp","size":2036,"last_modified":1529436749}{"name":"./kokkos/core/unit_test/threads/TestThreads_SubView_c12.cpp","size":2261,"last_modified":1529436749}{"name":"./kokkos/core/unit_test/threads/TestThreads_TeamReductionScan.cpp","size":3671,"last_modified":1529436749}{"name":"./kokkos/core/unit_test/threads/TestThreads_SubView_c05.cpp","size":2231,"last_modified":1529436749}{"name":"./kokkos/core/unit_test/threads/TestThreads_TeamScratch.cpp","size":3139,"last_modified":1529436749}{"name":"./kokkos/core/unit_test/threads/TestThreads_SubView_c07.cpp","size":2202,"last_modified":1529436749}{"name":"./kokkos/core/unit_test/threads/TestThreads_MDRange_b.cpp","size":2038,"last_modified":1529436749}{"name":"./kokkos/core/unit_test/threads/TestThreads_SubView_c09.cpp","size":2259,"last_modified":1529436749}{"name":"./kokkos/core/unit_test/threads/TestThreads_RangePolicy.cpp","size":2034,"last_modified":1529436749}{"name":"./kokkos/core/unit_test/threads/TestThreads_MDRange_d.cpp","size":2038,"last_modified":1529436749}{"name":"./kokkos/core/unit_test/threads/TestThreads_Init.cpp","size":2104,"last_modified":1529436749}{"name":"./kokkos/core/unit_test/threads/TestThreads_AtomicOperations_double.cpp","size":2051,"last_modified":1529436749}{"name":"./kokkos/core/unit_test/threads/TestThreads_SubView_b.cpp","size":2807,"last_modified":1529436749}{"name":"./kokkos/core/unit_test/threads/TestThreads_Reductions.cpp","size":2069,"last_modified":1529436749}{"name":"./kokkos/core/unit_test/threads/TestThreads_AtomicOperations_int.cpp","size":2048,"last_modified":1529436749}{"name":"./kokkos/core/unit_test/threads/TestThreads_ViewMapping_subview.cpp","size":2049,"last_modified":1529436749}{"name":"./kokkos/core/unit_test/threads/TestThreads_AtomicOperations_longint.cpp","size":2052,"last_modified":1529436749}{"name":"./kokkos/core/unit_test/threads/TestThreads_Scan.cpp","size":2033,"last_modified":1529436749}{"name":"./kokkos/core/unit_test/threads/TestThreads_ViewOfClass.cpp","size":2041,"last_modified":1529436749}{"name":"./kokkos/core/unit_test/threads/TestThreads_ViewAPI_c.cpp","size":2038,"last_modified":1529436749}{"name":"./kokkos/core/unit_test/threads/TestThreads_SubView_a.cpp","size":3317,"last_modified":1529436749}{"name":"./kokkos/core/unit_test/threads/TestThreads_Complex.cpp","size":2036,"last_modified":1529436749}{"name":"./kokkos/core/unit_test/threads/TestThreads_Crs.cpp","size":2030,"last_modified":1529436749}{"name":"./kokkos/core/unit_test/threads/TestThreads_Reducers_d.cpp","size":2039,"last_modified":1529436749}{"name":"./kokkos/core/unit_test/threads/TestThreads_AtomicOperations_unsignedint.cpp","size":2056,"last_modified":1529436749}{"name":"./kokkos/core/unit_test/UnitTestMainInit.cpp","size":2227,"last_modified":1529436747}{"name":"./kokkos/core/unit_test/qthreads/TestQqthreads_AtomicOperations_float.cpp","size":2053,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/qthreads/TestQthreads_SubView_c01.cpp","size":2159,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/qthreads/TestQthreads_SubView_c13.cpp","size":2182,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/qthreads/TestQqthreads_AtomicOperations_unsignedlongint.cpp","size":2063,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/qthreads/TestQqthreads_ViewAPI_e.cpp","size":2041,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/qthreads/TestQthreads_Atomics.cpp","size":14725,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/qthreads/TestQthreads_ViewAPI_b.cpp","size":3952,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/qthreads/TestQthreads_SubView_c04.cpp","size":2164,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/qthreads/TestQqthreads_MDRange_e.cpp","size":2041,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/qthreads/TestQthreads_SubView_c_all.cpp","size":637,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/qthreads/TestQqthreads_MDRange_d.cpp","size":2041,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/qthreads/TestQthreads_SubView_c07.cpp","size":2174,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/qthreads/TestQthreads_SubView_b.cpp","size":2797,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/qthreads/TestQqthreads_AtomicOperations_unsignedint.cpp","size":2059,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/qthreads/TestQqthreads_MDRange_a.cpp","size":2041,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/qthreads/TestQthreads_SubView_c11.cpp","size":2221,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/qthreads/TestQthreads_Other.cpp","size":7165,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/qthreads/TestQthreads_SubView_c05.cpp","size":2209,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/qthreads/TestQthreads_SubView_c09.cpp","size":2231,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/qthreads/TestQqthreads_MDRange_b.cpp","size":2041,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/qthreads/TestQthreads_Complex.cpp","size":72,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/qthreads/TestQthreads_SubView_c03.cpp","size":2216,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/qthreads/TestQqthreads_ViewAPI_d.cpp","size":2041,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/qthreads/TestQthreads_SubView_c12.cpp","size":2233,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/qthreads/TestQqthreads_AtomicOperations_longlongint.cpp","size":2059,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/qthreads/TestQthreads_ViewAPI_a.cpp","size":2194,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/qthreads/TestQthreads_Reductions.cpp","size":5532,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/qthreads/TestQqthreads_AtomicOperations_longint.cpp","size":2055,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/qthreads/TestQthreads_SubView_a.cpp","size":3389,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/qthreads/TestQthreads_Team.cpp","size":5437,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/qthreads/TestQthreads_SubView_c06.cpp","size":2221,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/qthreads/TestQqthreads_AtomicOperations_double.cpp","size":2054,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/qthreads/TestQqthreads_ViewAPI_a.cpp","size":2041,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/qthreads/TestQthreads_SubView_c02.cpp","size":2204,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/qthreads/TestQqthreads_MDRange_c.cpp","size":2041,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/qthreads/TestQqthreads_AtomicOperations_int.cpp","size":2051,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/qthreads/TestQqthreads_ViewAPI_c.cpp","size":2041,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/qthreads/TestQqthreads_ViewAPI_b.cpp","size":2041,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/qthreads/TestQthreads_SubView_c08.cpp","size":2219,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/qthreads/TestQthreads_SubView_c10.cpp","size":2176,"last_modified":1529436748}{"name":"./kokkos/core/unit_test/UnitTest_PushFinalizeHook_terminate.cpp","size":3351,"last_modified":1529436747}{"name":"./kokkos/tpls/gtest/gtest/gtest.h","size":830614,"last_modified":1529436750}{"name":"./kokkos/tpls/gtest/gtest/gtest-all.cc","size":354477,"last_modified":1529436750}{"name":"./interfaces/c/fft_join.c","size":3309,"last_modified":1528842308}{"name":"./interfaces/c/fft_join_tmp.c","size":3446,"last_modified":1528842308}{"name":"./interfaces/c/poynting2d.c","size":6280,"last_modified":1528842308}{"name":"./interfaces/c/data_join2.c","size":22638,"last_modified":1528842308}{"name":"./interfaces/c/fig10.c","size":4852,"last_modified":1528842308}{"name":"./interfaces/c/data_join.c","size":22633,"last_modified":1528842308}{"name":"./interfaces/c/pppp.c","size":11254,"last_modified":1528842308}{"name":"./interfaces/c/movie_join_bak.c","size":7266,"last_modified":1528842308}{"name":"./interfaces/c/fig9.c","size":4900,"last_modified":1528842308}{"name":"./interfaces/c/movie_join_2d.c","size":7170,"last_modified":1528842308}{"name":"./interfaces/c/movie_join.c","size":16856,"last_modified":1528842308}{"name":"./build/kokkos/containers/dummy.cpp","size":0,"last_modified":1530573067}{"name":"./build/kokkos/algorithms/dummy.cpp","size":0,"last_modified":1530573067}{"name":"./build/kokkos/core/dummy.cpp","size":0,"last_modified":1530573067}{"name":"./build/kokkos/KokkosCore_config.h","size":634,"last_modified":1530573066}{"name":"./build/CMakeFiles/FindMPI/test_mpi.cpp","size":835,"last_modified":1530573064}{"name":"./build/CMakeFiles/FindOpenMP/OpenMPCheckVersion.c","size":605,"last_modified":1530573065}{"name":"./build/CMakeFiles/FindOpenMP/OpenMPTryFlag.c","size":93,"last_modified":1530573065}{"name":"./build/CMakeFiles/FindOpenMP/OpenMPCheckVersion.cpp","size":605,"last_modified":1530573066}{"name":"./build/CMakeFiles/FindOpenMP/OpenMPTryFlag.cpp","size":93,"last_modified":1530573065}{"name":"./build/CMakeFiles/3.11.1/CompilerIdC/CMakeCCompilerId.c","size":18988,"last_modified":1530573057}{"name":"./build/CMakeFiles/3.11.1/CompilerIdCXX/CMakeCXXCompilerId.cpp","size":18492,"last_modified":1530573057}{"name":"./build/CMakeFiles/feature_tests.c","size":688,"last_modified":1530573059}
}
{"git_info":
{"commit_hash":031aab735138641fb73467e47484ed31cce3bfa0},
{"branch":sharrell}
}""")
test_json.append("""{"log":{
"user_responses":{
"description":"test",
"time_categories":{
"planning":{
"time_spent":3.000000,
"difficulty":6
},
"coding":{
"time_spent":3.000000,
"difficulty":7
},
"refactoring":{
"time_spent":5.000000,
"difficulty":4
},
"debugging":{
"time_spent":7.000000,
"difficulty":6
},
"optimising":{
"time_spent":4.000000,
"difficulty":6
}
},
"tags":{
"MPI":false,
"OpenMP":true,
"Cuda":false,
"Kokkos":true,
"domain specific work":false
},
"NASA-TLX":{
"mental_demand":5,
"temporal_demand":7,
"performance":4,
"effort":7,
"frustration":5
}
},
"autogeneratated":{
"status":"",
"files":[
{"name":"./sample/interface_deck_2D_decomp/head/interface_deck_2D_decomp.cc","size":79168,"last_modified":1528904996},
{"name":"./sample/interface_deck_2D_decomp/407/v407_interface_deck_2D_decomp.cc","size":80015,"last_modified":1528904996},
{"name":"./utilities/gtest-vpic.cc","size":500,"last_modified":1528904996},
{"name":"./utilities/restart_remap.cc","size":1796,"last_modified":1528904996},
{"name":"./deck/main.cc","size":3001,"last_modified":1528904996},
{"name":"./deck/wrapper.cc","size":25863,"last_modified":1528904996},
{"name":"./src/material/material.cc","size":2825,"last_modified":1531500079},
{"name":"./src/util/profile/profile.cc","size":1773,"last_modified":1531500079},
{"name":"./src/util/checkpt/checkpt.cc","size":22150,"last_modified":1531500079},
{"name":"./src/util/checkpt/checkpt_io.cc","size":680,"last_modified":1531500079},
{"name":"./src/util/boot.cc","size":1167,"last_modified":1531500079},
{"name":"./src/util/util_base.cc","size":6923,"last_modified":1531500080},
{"name":"./src/util/rng/test/rng.cc","size":13287,"last_modified":1531500080},
{"name":"./src/util/rng/frandn_table.cc","size":7759,"last_modified":1531500080},
{"name":"./src/util/rng/rng.cc","size":17713,"last_modified":1531500080},
{"name":"./src/util/rng/drandn_table.cc","size":30219,"last_modified":1531500080},
{"name":"./src/util/rng/rng_pool.cc","size":1475,"last_modified":1531500080},
{"name":"./src/util/mp/mp.cc","size":2494,"last_modified":1531500080},
{"name":"./src/util/v4/test/v4.cc","size":11628,"last_modified":1531500080},
{"name":"./src/util/pipelines/pipelines_thread.cc","size":19730,"last_modified":1531500080},
{"name":"./src/util/pipelines/pipelines_serial.cc","size":2100,"last_modified":1531500080},
{"name":"./src/vpic/advance.cc","size":8824,"last_modified":1532015937},
{"name":"./src/vpic/diagnostics.cc","size":2261,"last_modified":1531500080},
{"name":"./src/vpic/vpic.cc","size":3605,"last_modified":1531500080},
{"name":"./src/vpic/misc.cc","size":10026,"last_modified":1531500080},
{"name":"./src/vpic/initialize.cc","size":3000,"last_modified":1532015937},
{"name":"./src/vpic/dump.cc","size":27661,"last_modified":1531500080},
{"name":"./src/field_advance/standard/vacuum_energy_f.cc","size":4800,"last_modified":1531500080},
{"name":"./src/field_advance/standard/compute_rms_div_b_err.cc","size":1977,"last_modified":1531500080},
{"name":"./src/field_advance/standard/advance_b.cc","size":5314,"last_modified":1532015936},
{"name":"./src/field_advance/standard/sfa.cc","size":7263,"last_modified":1532015936},
{"name":"./src/field_advance/standard/vacuum_compute_curl_b.cc","size":9562,"last_modified":1531500080},
{"name":"./src/field_advance/standard/vacuum_advance_e.cc","size":11198,"last_modified":1531500080},
{"name":"./src/field_advance/standard/compute_rhob.cc","size":4404,"last_modified":1531500080},
{"name":"./src/field_advance/standard/advance_e.cc","size":12678,"last_modified":1531856219},
{"name":"./src/field_advance/standard/energy_f.cc","size":4575,"last_modified":1531500080},
{"name":"./src/field_advance/standard/vacuum_compute_div_e_err.cc","size":4598,"last_modified":1531500080},
{"name":"./src/field_advance/standard/clean_div_e.cc","size":4207,"last_modified":1531500080},
{"name":"./src/field_advance/standard/remote.cc","size":23843,"last_modified":1531509851},
{"name":"./src/field_advance/standard/compute_div_b_err.cc","size":4871,"last_modified":1531500080},
{"name":"./src/field_advance/standard/clean_div_b.cc","size":7907,"last_modified":1531500080},
{"name":"./src/field_advance/standard/vacuum_clean_div_e.cc","size":4037,"last_modified":1531500080},
{"name":"./src/field_advance/standard/compute_rms_div_e_err.cc","size":4791,"last_modified":1531500080},
{"name":"./src/field_advance/standard/vacuum_compute_rhob.cc","size":4439,"last_modified":1531500080},
{"name":"./src/field_advance/standard/compute_div_e_err.cc","size":4521,"last_modified":1531500080},
{"name":"./src/field_advance/standard/compute_curl_b.cc","size":10347,"last_modified":1531500080},
{"name":"./src/field_advance/standard/local.cc","size":21223,"last_modified":1532015936},
{"name":"./src/field_advance/field_advance.cc","size":2089,"last_modified":1531500080},
{"name":"./src/species_advance/standard/energy_p.cc","size":4421,"last_modified":1531500080},
{"name":"./src/species_advance/standard/sort_p.cc","size":9721,"last_modified":1531500080},
{"name":"./src/species_advance/standard/rho_p.cc","size":7133,"last_modified":1531500080},
{"name":"./src/species_advance/standard/advance_p.cc","size":17585,"last_modified":1531500080},
{"name":"./src/species_advance/standard/uncenter_p.cc","size":5982,"last_modified":1532015937},
{"name":"./src/species_advance/standard/move_p.cc","size":14414,"last_modified":1531500080},
{"name":"./src/species_advance/standard/center_p.cc","size":5891,"last_modified":1531500080},
{"name":"./src/species_advance/standard/hydro_p.cc","size":6464,"last_modified":1531500080},
{"name":"./src/species_advance/species_advance.cc","size":3637,"last_modified":1532015936},
{"name":"./src/grid/partition.cc","size":6164,"last_modified":1531500080},
{"name":"./src/grid/ops.cc","size":7031,"last_modified":1531500080},
{"name":"./src/grid/grid_comm.cc","size":1810,"last_modified":1531500080},
{"name":"./src/grid/grid_structors.cc","size":1183,"last_modified":1531500080},
{"name":"./src/boundary/link.cc","size":2404,"last_modified":1531500080},
{"name":"./src/boundary/absorb_tally.cc","size":2630,"last_modified":1531500080},
{"name":"./src/boundary/maxwellian_reflux.cc","size":8642,"last_modified":1531500080},
{"name":"./src/boundary/boundary_p.cc","size":16088,"last_modified":1532015936},
{"name":"./src/boundary/boundary.cc","size":2281,"last_modified":1531500080},
{"name":"./src/collision/collision.cc","size":2100,"last_modified":1531500080},
{"name":"./src/collision/unary.cc","size":5158,"last_modified":1531500080},
{"name":"./src/collision/langevin.cc","size":4740,"last_modified":1531500080},
{"name":"./src/collision/binary.cc","size":9583,"last_modified":1531500080},
{"name":"./src/collision/hard_sphere.cc","size":17874,"last_modified":1531500080},
{"name":"./src/collision/large_angle_coulomb.cc","size":11081,"last_modified":1531500080},
{"name":"./src/emitter/emitter.cc","size":2366,"last_modified":1531500080},
{"name":"./src/emitter/child_langmuir.cc","size":8682,"last_modified":1531500080},
{"name":"./src/sf_interface/reduce_accumulators.cc","size":6310,"last_modified":1531500081},
{"name":"./src/sf_interface/clear_accumulators.cc","size":1161,"last_modified":1531500081},
{"name":"./src/sf_interface/accumulator_array.cc","size":1680,"last_modified":1531500081},
{"name":"./src/sf_interface/hydro_array.cc","size":7869,"last_modified":1531500081},
{"name":"./src/sf_interface/interpolator_array.cc","size":10078,"last_modified":1532015936},
{"name":"./src/sf_interface/unload_accumulator.cc","size":3507,"last_modified":1531500081},
{"name":"./kokkos/tpls/gtest/gtest/gtest-all.cc","size":354477,"last_modified":1528906780},
{"name":"./interfaces/c/fft_join.c","size":3309,"last_modified":1528904996},
{"name":"./interfaces/c/fft_join_tmp.c","size":3446,"last_modified":1528904996},
{"name":"./interfaces/c/poynting2d.c","size":6280,"last_modified":1528904996},
{"name":"./interfaces/c/data_join2.c","size":22638,"last_modified":1528904996},
{"name":"./interfaces/c/fig10.c","size":4852,"last_modified":1528904996},
{"name":"./interfaces/c/data_join.c","size":22633,"last_modified":1528904996},
{"name":"./interfaces/c/pppp.c","size":11254,"last_modified":1528904996},
{"name":"./interfaces/c/movie_join_bak.c","size":7266,"last_modified":1528904996},
{"name":"./interfaces/c/fig9.c","size":4900,"last_modified":1528904996},
{"name":"./interfaces/c/movie_join_2d.c","size":7170,"last_modified":1528904996},
{"name":"./interfaces/c/movie_join.c","size":16856,"last_modified":1528904996},
{"name":"./build/CMakeFiles/FindOpenMP/OpenMPCheckVersion.c","size":605,"last_modified":1531841816},
{"name":"./build/CMakeFiles/FindOpenMP/OpenMPTryFlag.c","size":93,"last_modified":1531841815},
{"name":"./build/CMakeFiles/3.11.1/CompilerIdC/CMakeCCompilerId.c","size":18988,"last_modified":1531841805},
{"name":"./build/CMakeFiles/feature_tests.c","size":688,"last_modified":1531841808},
{"name":"./utilities/symbols.h","size":1274,"last_modified":1528904996},
{"name":"./src/material/material.h","size":1438,"last_modified":1531500079},
{"name":"./src/util/bitfield.h","size":2961,"last_modified":1531500079},
{"name":"./src/util/swap.h","size":4340,"last_modified":1531500079},
{"name":"./src/util/system.h","size":1880,"last_modified":1531500079},
{"name":"./src/util/io/P2PIOPolicy.h","size":13536,"last_modified":1531500079},
{"name":"./src/util/io/FileIOData.h","size":402,"last_modified":1531500079},
{"name":"./src/util/io/FileIO.h","size":1855,"last_modified":1531500079},
{"name":"./src/util/io/StandardUtilsPolicy.h","size":577,"last_modified":1531500079},
{"name":"./src/util/io/P2PUtilsPolicy.h","size":1218,"last_modified":1531500079},
{"name":"./src/util/io/FileUtils.h","size":778,"last_modified":1531500079},
{"name":"./src/util/io/StandardIOPolicy.h","size":3305,"last_modified":1531500079},
{"name":"./src/util/profile/profile.h","size":3083,"last_modified":1531500079},
{"name":"./src/util/util_base.h","size":14693,"last_modified":1531500079},
{"name":"./src/util/checkpt/checkpt.h","size":13238,"last_modified":1531500079},
{"name":"./src/util/checkpt/checkpt_io.h","size":1709,"last_modified":1531500079},
{"name":"./src/util/checkpt/checkpt_private.h","size":628,"last_modified":1531500079},
{"name":"./src/util/util.h","size":1060,"last_modified":1531500079},
{"name":"./src/util/rng/rng.h","size":9313,"last_modified":1531500080},
{"name":"./src/util/rng/frandn_table.h","size":312,"last_modified":1531500080},
{"name":"./src/util/rng/rng_private.h","size":11345,"last_modified":1531500080},
{"name":"./src/util/rng/drandn_table.h","size":320,"last_modified":1531500080},
{"name":"./src/util/mp/RelayPolicy.h","size":12301,"last_modified":1531500080},
{"name":"./src/util/mp/mp.h","size":3441,"last_modified":1531500080},
{"name":"./src/util/mp/DMPPolicy.h","size":10437,"last_modified":1531500080},
{"name":"./src/util/mp/MPWrapper.h","size":540,"last_modified":1531500080},
{"name":"./src/util/v4/v4_sse.h","size":33491,"last_modified":1531500080},
{"name":"./src/util/v4/v4_portable.h","size":33860,"last_modified":1531500080},
{"name":"./src/util/v4/v4_altivec.h","size":42173,"last_modified":1531500080},
{"name":"./src/util/v4/v4.h","size":343,"last_modified":1531500080},
{"name":"./src/util/checksum.h","size":1125,"last_modified":1531500080},
{"name":"./src/util/pipelines/pipelines.h","size":3872,"last_modified":1531500080},
{"name":"./src/vpic/dumpmacros.h","size":8876,"last_modified":1531500080},
{"name":"./src/vpic/vpic_unit_deck.h","size":457,"last_modified":1531500080},
{"name":"./src/vpic/kokkos_helpers.h","size":4833,"last_modified":1532015937},
{"name":"./src/vpic/vpic.h","size":22550,"last_modified":1531500080},
{"name":"./src/field_advance/standard/sfa_private.h","size":14239,"last_modified":1532015936},
{"name":"./src/field_advance/field_advance_private.h","size":545,"last_modified":1531500080},
{"name":"./src/field_advance/field_advance.h","size":10219,"last_modified":1532015936},
{"name":"./src/species_advance/standard/spa_private.h","size":5627,"last_modified":1531500080},
{"name":"./src/species_advance/species_advance.h","size":7654,"last_modified":1532015936},
{"name":"./src/grid/grid.h","size":14277,"last_modified":1531500080},
{"name":"./src/boundary/boundary.h","size":1516,"last_modified":1531500080},
{"name":"./src/boundary/boundary_private.h","size":2437,"last_modified":1531500080},
{"name":"./src/collision/collision_private.h","size":1469,"last_modified":1531500080},
{"name":"./src/collision/collision.h","size":12961,"last_modified":1531500080},
{"name":"./src/emitter/emitter_private.h","size":1115,"last_modified":1531500080},
{"name":"./src/emitter/emitter.h","size":2906,"last_modified":1531500080},
{"name":"./src/sf_interface/sf_interface.h","size":5787,"last_modified":1532015936},
{"name":"./src/sf_interface/sf_interface_private.h","size":2480,"last_modified":1531500081},
{"name":"./kokkos/example/md_skeleton/system.h","size":2718,"last_modified":1528906780},
{"name":"./kokkos/example/md_skeleton/types.h","size":5086,"last_modified":1528906780},
{"name":"./kokkos/core/unit_test/config/results/HSW_Qthreads_KokkosCore_config.h","size":630,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Pascal61_ROCm_KokkosCore_config.h","size":571,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Kepler35_ROCm_KokkosCore_config.h","size":571,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Maxwell53_Qthreads_KokkosCore_config.h","size":544,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/ARMv81_Pthread_KokkosCore_config.h","size":572,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/BDW_OpenMP_KokkosCore_config.h","size":682,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/WSM_Serial_KokkosCore_config.h","size":629,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Pascal61_Serial_KokkosCore_config.h","size":542,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/SKX_OpenMP_KokkosCore_config.h","size":688,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/SKX_Cuda_KokkosCore_config.h","size":715,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Kepler37_Serial_KokkosCore_config.h","size":542,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/ARMv80_Qthreads_KokkosCore_config.h","size":573,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Power9_OpenMP_KokkosCore_config.h","size":633,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Maxwell53_Pthread_KokkosCore_config.h","size":543,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/ARMv81_OpenMP_KokkosCore_config.h","size":571,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/AMDAVX_ROCm_KokkosCore_config.h","size":597,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Kepler35_OpenMP_KokkosCore_config.h","size":542,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Maxwell50_Qthreads_KokkosCore_config.h","size":544,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Pascal60_Pthread_KokkosCore_config.h","size":543,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Kepler30_ROCm_KokkosCore_config.h","size":571,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Power7_OpenMP_KokkosCore_config.h","size":633,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Maxwell50_Serial_KokkosCore_config.h","size":542,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Power9_Qthreads_KokkosCore_config.h","size":635,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/KNC_Cuda_KokkosCore_config.h","size":651,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/BGQ_ROCm_KokkosCore_config.h","size":571,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/BDW_Qthreads_KokkosCore_config.h","size":684,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/AMDAVX_Qthreads_KokkosCore_config.h","size":570,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Power8_Qthreads_KokkosCore_config.h","size":635,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Maxwell53_Cuda_KokkosCore_config.h","size":631,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Kepler30_Serial_KokkosCore_config.h","size":542,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/KNC_ROCm_KokkosCore_config.h","size":653,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/SKX_Pthread_KokkosCore_config.h","size":689,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/AMDAVX_Cuda_KokkosCore_config.h","size":595,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/ARMv80_ROCm_KokkosCore_config.h","size":600,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/BGQ_Qthreads_KokkosCore_config.h","size":544,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Maxwell_Cuda_KokkosCore_config.h","size":631,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/ARMv80_Pthread_KokkosCore_config.h","size":572,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/BDW_ROCm_KokkosCore_config.h","size":711,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Kepler_OpenMP_KokkosCore_config.h","size":542,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Kepler37_Qthreads_KokkosCore_config.h","size":544,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Kepler30_Qthreads_KokkosCore_config.h","size":544,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Kepler_ROCm_KokkosCore_config.h","size":571,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Maxwell_Serial_KokkosCore_config.h","size":542,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Maxwell52_ROCm_KokkosCore_config.h","size":571,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/BDW_Serial_KokkosCore_config.h","size":682,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Pascal60_ROCm_KokkosCore_config.h","size":571,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Kepler_Cuda_KokkosCore_config.h","size":629,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/WSM_Cuda_KokkosCore_config.h","size":656,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/AMDAVX_Serial_KokkosCore_config.h","size":568,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/None_Serial_KokkosCore_config.h","size":542,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Pascal60_OpenMP_KokkosCore_config.h","size":542,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Maxwell52_Serial_KokkosCore_config.h","size":542,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/HSW_Pthread_KokkosCore_config.h","size":629,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Power9_ROCm_KokkosCore_config.h","size":662,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/KNC_Pthread_KokkosCore_config.h","size":625,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/ARMv8-ThunderX_Pthread_KokkosCore_config.h","size":609,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/KNC_OpenMP_KokkosCore_config.h","size":624,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Maxwell_ROCm_KokkosCore_config.h","size":571,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Maxwell52_Pthread_KokkosCore_config.h","size":543,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/KNL_Pthread_KokkosCore_config.h","size":634,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Pascal60_Serial_KokkosCore_config.h","size":542,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Power7_Serial_KokkosCore_config.h","size":633,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Maxwell53_OpenMP_KokkosCore_config.h","size":542,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Kepler37_OpenMP_KokkosCore_config.h","size":542,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Power7_ROCm_KokkosCore_config.h","size":662,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Power7_Pthread_KokkosCore_config.h","size":634,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/None_Qthreads_KokkosCore_config.h","size":544,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/SNB_Serial_KokkosCore_config.h","size":627,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Maxwell52_OpenMP_KokkosCore_config.h","size":542,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Power7_Qthreads_KokkosCore_config.h","size":635,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/WSM_OpenMP_KokkosCore_config.h","size":629,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/ARMv80_Serial_KokkosCore_config.h","size":571,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Power8_Serial_KokkosCore_config.h","size":633,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/ARMv81_ROCm_KokkosCore_config.h","size":600,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/ARMv81_Qthreads_KokkosCore_config.h","size":573,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/KNC_Qthreads_KokkosCore_config.h","size":626,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/SKX_Serial_KokkosCore_config.h","size":688,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/HSW_Serial_KokkosCore_config.h","size":628,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Maxwell50_Pthread_KokkosCore_config.h","size":543,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Pascal61_Pthread_KokkosCore_config.h","size":543,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Power8_Pthread_KokkosCore_config.h","size":634,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/None_Cuda_KokkosCore_config.h","size":569,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Maxwell52_Cuda_KokkosCore_config.h","size":631,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/SKX_Qthreads_KokkosCore_config.h","size":690,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Pascal61_OpenMP_KokkosCore_config.h","size":542,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Kepler35_Cuda_KokkosCore_config.h","size":629,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Pascal60_Cuda_KokkosCore_config.h","size":629,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/HSW_Cuda_KokkosCore_config.h","size":655,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/SKX_ROCm_KokkosCore_config.h","size":717,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/SNB_Pthread_KokkosCore_config.h","size":628,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Kepler_Pthread_KokkosCore_config.h","size":543,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/AMDAVX_OpenMP_KokkosCore_config.h","size":568,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Pascal60_Qthreads_KokkosCore_config.h","size":544,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Maxwell50_Cuda_KokkosCore_config.h","size":631,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/AMDAVX_Pthread_KokkosCore_config.h","size":569,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/WSM_ROCm_KokkosCore_config.h","size":658,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Maxwell_OpenMP_KokkosCore_config.h","size":542,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/BGQ_Serial_KokkosCore_config.h","size":542,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Kepler_Serial_KokkosCore_config.h","size":542,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/BGQ_Pthread_KokkosCore_config.h","size":543,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Kepler32_Pthread_KokkosCore_config.h","size":543,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Maxwell53_ROCm_KokkosCore_config.h","size":571,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Power9_Serial_KokkosCore_config.h","size":633,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Maxwell_Qthreads_KokkosCore_config.h","size":544,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/ARMv8-ThunderX_Serial_KokkosCore_config.h","size":608,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/ARMv80_Cuda_KokkosCore_config.h","size":598,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/BDW_Pthread_KokkosCore_config.h","size":683,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/ARMv8-ThunderX_ROCm_KokkosCore_config.h","size":637,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Kepler35_Qthreads_KokkosCore_config.h","size":544,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Maxwell_Pthread_KokkosCore_config.h","size":543,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Kepler37_Pthread_KokkosCore_config.h","size":543,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Kepler30_Cuda_KokkosCore_config.h","size":629,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Kepler32_Cuda_KokkosCore_config.h","size":629,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Kepler32_OpenMP_KokkosCore_config.h","size":542,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/BDW_Cuda_KokkosCore_config.h","size":709,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Kepler35_Serial_KokkosCore_config.h","size":542,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/ARMv8-ThunderX_Cuda_KokkosCore_config.h","size":635,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Kepler30_Pthread_KokkosCore_config.h","size":543,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Kepler37_ROCm_KokkosCore_config.h","size":571,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Power8_ROCm_KokkosCore_config.h","size":662,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/WSM_Pthread_KokkosCore_config.h","size":630,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/ARMv81_Cuda_KokkosCore_config.h","size":598,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/SNB_Qthreads_KokkosCore_config.h","size":629,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/ARMv8-ThunderX_Qthreads_KokkosCore_config.h","size":610,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/SNB_OpenMP_KokkosCore_config.h","size":627,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Kepler37_Cuda_KokkosCore_config.h","size":629,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/SNB_ROCm_KokkosCore_config.h","size":656,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/BGQ_OpenMP_KokkosCore_config.h","size":542,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Kepler35_Pthread_KokkosCore_config.h","size":543,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/ARMv80_OpenMP_KokkosCore_config.h","size":571,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Maxwell50_ROCm_KokkosCore_config.h","size":571,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/None_OpenMP_KokkosCore_config.h","size":542,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Power8_OpenMP_KokkosCore_config.h","size":633,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Pascal61_Qthreads_KokkosCore_config.h","size":544,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Maxwell52_Qthreads_KokkosCore_config.h","size":544,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/SNB_Cuda_KokkosCore_config.h","size":654,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/KNL_Qthreads_KokkosCore_config.h","size":635,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/KNL_ROCm_KokkosCore_config.h","size":662,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Power9_Pthread_KokkosCore_config.h","size":634,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/None_Pthread_KokkosCore_config.h","size":543,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Kepler32_ROCm_KokkosCore_config.h","size":571,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Maxwell53_Serial_KokkosCore_config.h","size":542,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/KNL_Cuda_KokkosCore_config.h","size":660,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Maxwell50_OpenMP_KokkosCore_config.h","size":542,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/None_ROCm_KokkosCore_config.h","size":571,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Power7_Cuda_KokkosCore_config.h","size":660,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/ARMv81_Serial_KokkosCore_config.h","size":571,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/KNL_OpenMP_KokkosCore_config.h","size":633,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Kepler32_Qthreads_KokkosCore_config.h","size":544,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/HSW_OpenMP_KokkosCore_config.h","size":628,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Kepler_Qthreads_KokkosCore_config.h","size":544,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/KNC_Serial_KokkosCore_config.h","size":624,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/ARMv8-ThunderX_OpenMP_KokkosCore_config.h","size":608,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Pascal61_Cuda_KokkosCore_config.h","size":629,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Kepler32_Serial_KokkosCore_config.h","size":542,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/WSM_Qthreads_KokkosCore_config.h","size":631,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Power8_Cuda_KokkosCore_config.h","size":660,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Kepler30_OpenMP_KokkosCore_config.h","size":542,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/HSW_ROCm_KokkosCore_config.h","size":657,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/KNL_Serial_KokkosCore_config.h","size":633,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/Power9_Cuda_KokkosCore_config.h","size":660,"last_modified":1528906778},
{"name":"./kokkos/core/unit_test/config/results/BGQ_Cuda_KokkosCore_config.h","size":569,"last_modified":1528906778},
{"name":"./kokkos/tpls/gtest/gtest/gtest.h","size":830614,"last_modified":1528906780},
{"name":"./build/kokkos/KokkosCore_config.h","size":634,"last_modified":1531841817},
{"name":"./kokkos/example/cmake_build/foo.f","size":108,"last_modified":1528906780}
],
"git_info":{
"commit_hash":"4534681817954e93dafdb03e27b6f49a15052a98",
"branch":"test"
}
}
}
}""")
|
def positive_or_negative(value):
if value > 0:
return "Positive!"
elif value < 0:
return "Negative!"
else:
return "It's zero!"
number = int(input("Wprowadz liczbe: "))
print(positive_or_negative(number))
|
"""Traffic generator package using scapy
Scapy Documentation: http://www.secdev.org/projects/scapy/doc/
"""
|
"""
Draw tree like structures using Space Colonization algorithm
https://www.youtube.com/watch?v=kKT0v3qhIQY
https://medium.com/@jason.webb/space-colonization-algorithm-in-javascript-6f683b743dc5
"""
add_library('svg')
leaf_prob = 0.01 # ratio of non-white pixels that are converted to leaves
max_dist = 50 # max distance between a leaf and a branch such that the branch is influenced by the leaf
min_dist = 4 # min distance between a leaf and a branch such when reached the leaf become 'consumed'
branch_len = 3
tree = None
class Leaf:
def __init__(self, pos):
self.pos = pos # position
self.reached = False # whether a branch has reached this leaf's min_dist
def draw(self):
if not self.reached:
point(self.pos.x, self.pos.y)
class Branch:
def __init__(self, parent, pos, dir):
self.parent = parent
self.n_children = 0
self.pos = pos # position
self.dir = dir.copy().normalize() # direction
self.attractors = [] # leafs that the branch is attracted to
def grow(self):
if len(self.attractors) == 0:
return None
new_dir = self.dir.copy()
for a in self.attractors:
attr_dir = PVector.sub(a.pos, self.pos)
# not normalizing 'attr_dir' helps bias the tree towards
# areas of more leaves
# attr_dir.normalize()
new_dir.add(attr_dir)
# new_dir.add(PVector(random(-0.01, 0.01), random(-0.01, 0.01)))
new_dir.normalize()
new_dir.mult(branch_len)
self.attractors = []
new_pos = PVector.add(self.pos, new_dir)
new_branch = Branch(self, new_pos, new_dir)
# sometimes a branch gets stuck between 2 equidistant leaves.
# Break the tie by adding noise
dp = new_branch.dir.dot(self.dir)
if abs(1-dp) < 0.002:
random_offset = PVector(random(-0.2, 0.2), random(-0.2, 0.2))
new_branch.pos.add(random_offset)
return new_branch
def add_attractor(self, leaf):
self.attractors.append(leaf)
def draw(self):
if self.parent is not None:
weight = map(log(1 + self.n_children), 0, 3, 0.5, 1.5)
strokeWeight(weight)
line(self.pos.x, self.pos.y, self.parent.pos.x, self.parent.pos.y)
class Tree:
def __init__(self, root, leaves):
self.leaves = leaves
self.active_branches = [root] # branches that are still growing
self.passive_branches = [] # branches that stopped growing
# inital growth
reached = False
while not reached:
branch = self.active_branches[-1]
for l in self.leaves:
d = PVector.dist(l.pos, branch.pos)
if d < min_dist:
reached = True
break
if not reached:
# add a temp attractor to let the branch grow
branch.add_attractor(Leaf(PVector.add(branch.pos, branch.dir)))
new_branch = branch.grow()
self.active_branches.append(new_branch)
def grow(self):
# for each leaf find the closest branch within max_dist
for l in self.leaves:
curr_dist = None
closest_branch = None
for b in self.active_branches:
d = PVector.dist(l.pos, b.pos)
if d < min_dist:
l.reached = True
if curr_dist is None or curr_dist > d:
curr_dist = d
closest_branch = b
if closest_branch is not None and curr_dist < max_dist:
closest_branch.add_attractor(l)
# grow active branches
new_active_branches = []
for b in self.active_branches:
new_branch = b.grow()
if new_branch is not None:
new_active_branches.append(b)
new_active_branches.append(new_branch)
else:
self.passive_branches.append(b)
self.active_branches = new_active_branches
# remove reached leaves
remain_leaves = []
for l in self.leaves:
if not l.reached:
remain_leaves.append(l)
self.leaves = remain_leaves
print('n_leaves = %d n_active = %d n_passive = %d'
% (len(self.leaves), len(self.active_branches), len(self.passive_branches)))
def update_passive_counts(self):
children_map = {}
for b in self.passive_branches:
b.n_childrens = 0
for b in self.passive_branches:
parent = b.parent
while parent is not None:
parent.n_children += 1
if parent.parent is None:
root = parent
parent = parent.parent
# assert len(self.passive_branches) == root.n_children + 1
def draw(self, leaves=False, branches=True):
if leaves:
for l in self.leaves:
strokeWeight(2)
stroke(0)
l.draw()
if branches:
strokeWeight(1)
for b in self.passive_branches:
stroke(0)
b.draw()
for b in self.active_branches:
stroke(255, 0, 0)
b.draw()
def create_leaves_random():
leaves = []
for _ in range(n_leaves):
leaf = Leaf(PVector(random(width), random(height-100)))
leaves.append(leaf)
return leaves
def create_leaves_from_image():
img = loadImage('maple_leaf.png')
img.loadPixels()
leaves = []
for y in range(img.height):
for x in range(img.width):
i = x + y * img.width
if red(img.pixels[i]) < 255:
if random(1) < leaf_prob:
xl = map(x, 0, img.width, 0, width)
yl = map(y, 0, img.height, 0, height)
leaves.append(Leaf(PVector(xl, yl)))
return leaves
def setup():
global tree
size(500, 500)
background(255)
randomSeed(43)
leaves = create_leaves_from_image()
root = Branch(parent=None,
pos=PVector(width/2, height),
dir=PVector(0, -1))
tree = Tree(root, leaves)
def draw():
if len(tree.active_branches) == 0:
noLoop()
# tree.update_passive_counts()
beginRecord(SVG, "maple_leaf.svg")
tree.draw(leaves=True, branches=True)
endRecord()
print('finished')
return
background(255)
tree.grow()
tree.update_passive_counts()
tree.draw(leaves=True, branches=True)
# enable to save frames to generate gif
# saveFrame("frame-######.png")
def keyPressed():
if key == 'p':
print('stopping the loop')
noLoop()
|
command = input().split("|")
energy = 100
coins = 100
clear_event = True
for current_command in command:
current_command = current_command.split("-")
event = current_command[0]
number = int(current_command[1])
if event == "rest":
needed_energy = 100 - energy
gained_energy = min(number, needed_energy)
energy += gained_energy
print(f"You gained {gained_energy} energy.")
print(f"Current energy: {energy}.")
elif event == "order":
if energy >= 30:
coins += number
energy -= 30
print(f"You earned {number} coins.")
else:
energy += 50
print(f"You had to rest!")
else:
coins -= number
if coins > 0:
print(f"You bought {event}.")
else:
print(f"Closed! Cannot afford {event}.")
clear_event = False
break
if clear_event:
print(f"Day completed!")
print(f"Coins: {coins}")
print(f"Energy: {energy}")
|
class EventLogEntryCollection(object):
""" Defines size and enumerators for a collection of System.Diagnostics.EventLogEntry instances. """
def ZZZ(self):
"""hardcoded/mock instance of the class"""
return EventLogEntryCollection()
instance=ZZZ()
"""hardcoded/returns an instance of the class"""
def CopyTo(self,entries,index):
"""
CopyTo(self: EventLogEntryCollection,entries: Array[EventLogEntry],index: int)
Copies the elements of the System.Diagnostics.EventLogEntryCollection to an array of System.Diagnostics.EventLogEntry instances,starting at a particular array index.
entries: The one-dimensional array of System.Diagnostics.EventLogEntry instances that is the destination of the elements copied from the collection. The array must have zero-based
indexing.
index: The zero-based index in the array at which copying begins.
"""
pass
def GetEnumerator(self):
"""
GetEnumerator(self: EventLogEntryCollection) -> IEnumerator
Supports a simple iteration over the System.Diagnostics.EventLogEntryCollection object.
Returns: An object that can be used to iterate over the collection.
"""
pass
def __getitem__(self,*args):
""" x.__getitem__(y) <==> x[y] """
pass
def __init__(self,*args):
""" x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """
pass
def __iter__(self,*args):
""" __iter__(self: IEnumerable) -> object """
pass
def __len__(self,*args):
""" x.__len__() <==> len(x) """
pass
def __repr__(self,*args):
""" __repr__(self: object) -> str """
pass
Count=property(lambda self: object(),lambda self,v: None,lambda self: None)
"""Gets the number of entries in the event log (that is,the number of elements in the System.Diagnostics.EventLogEntry collection).
Get: Count(self: EventLogEntryCollection) -> int
"""
|
def diff_tests(input_files):
tests = []
updates = []
for input_file in input_files:
genrule_name = "gen_{}.actual".format(input_file)
actual_file = "{}.actual".format(input_file)
native.genrule(
name = genrule_name,
srcs = [input_file],
outs = [actual_file],
tools = ["//main:as-tree"],
cmd = "$(location //main:as-tree) $(location {input_file}) > $(location {actual_file})".format(
input_file = input_file,
actual_file = actual_file
),
testonly = True,
# This is manual to avoid being caught with `//...`
tags = ["manual"],
)
test_name = "test_{}".format(input_file)
exp_file = "{}.exp".format(input_file)
native.sh_test(
name = test_name,
srcs = ["diff_one.sh"],
args = [
"$(location {})".format(exp_file),
"$(location {})".format(actual_file),
],
data = [
exp_file,
actual_file,
],
size = "small",
tags = [],
)
update_name = "update_{}".format(input_file)
native.sh_test(
name = update_name,
srcs = ["update_one.sh"],
args = [
"$(location {})".format(actual_file),
"$(location {})".format(exp_file),
],
data = [
actual_file,
exp_file,
],
size = "small",
tags = [
# Avoid being caught with `//...`
"manual",
# Forces the test to be run locally, without sandboxing
"local",
# Unconditionally run this rule, and don't run in the sandbox
"external",
],
)
tests.append(test_name)
updates.append(update_name)
native.test_suite(
name = "test",
tests = tests,
)
native.test_suite(
name = "update",
tests = updates,
tags = ["manual"],
)
|
#-----------------------------------------------------------------------------
# Name: Looping Structures - While (loopingWhile.py)
# Purpose: To provide information about how while loops work as a looping
# structure in Python
#
# Author: Mr. Seidel
# Created: 17-Aug-2018
# Updated: 22-Aug-2018
#-----------------------------------------------------------------------------
# Using a while loop to count up
count = 1
while count < 10:
print(str(x + count))
count = count + 1 # this can also be written as count += 1
# Using a while loop to count down
count = 275
while count > 250:
count = count - 1 # this can also be written as z -= 1
if count % 2 == 0:
print(str(z) + ": This number is even")
# Creating an infinite loop. This loop won't stop.
count = 1
while count == 1:
print("Count is equal to the number 1")
# Using an "else" statement with a while loop
count = 1
while count < 10:
print(str(2 * count))
count += 1
else:
print("Done")
# Breaking out of a loop early
count = 1
while count < 10:
if count == 5:
break
count += 1
# Using Continue to skip certain values
count = 1
while count < 10:
count += 1
if count % 2 == 0: # skip EVEN numbers (and ZERO)
continue # immediately jump back to "while count < 10"
print(str(count))
# Using pass
count = 1
while count < 10:
count += 1
if count % 2 == 0: # Plan to do something for EVEN numbers (and ZERO)
pass
elif count == 5: # Plan something else for when count is 5
pass
print(str(count))
|
print("Akshitha Sai");
print("AM.EN.U4CSE18122");
print("CSE");
print("marvel rocks");
|
# Copyright 2013 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
{
'variables': {
'chromium_code': 1,
},
'targets': [
{
# GN version: //ios/net:ios_net_unittests
'target_name': 'ios_net_unittests',
'type': '<(gtest_target_type)',
'dependencies': [
'../../base/base.gyp:base',
'../../base/base.gyp:run_all_unittests',
'../../net/net.gyp:net_test_support',
'../../testing/gtest.gyp:gtest',
'../../url/url.gyp:url_lib',
'ios_net.gyp:ios_net',
],
'include_dirs': [
'../..',
],
'sources': [
'clients/crn_forwarding_network_client_factory_unittest.mm',
'cookies/cookie_cache_unittest.cc',
'cookies/cookie_creation_time_manager_unittest.mm',
'cookies/cookie_store_ios_unittest.mm',
'cookies/system_cookie_util_unittest.mm',
'http_response_headers_util_unittest.mm',
'nsurlrequest_util_unittest.mm',
'protocol_handler_util_unittest.mm',
'url_scheme_util_unittest.mm',
],
},
],
}
|
def test_password(con):
"""Called by GitHub Actions with auth method password.
We just need to check that we can get a connection.
"""
pass
|
n = int(input("Enter N: "))
l = []
for i in range(0 , n):
inp = int(input("Enter numbers: "))
l.append(inp)
l.sort()
a = 0
b = 0
for i in range(0 , n):
if i % 2 != 0:
a = a * 10 + l[i]
else:
b = b * 10 + l[i]
c = a + b
print(c)
|
help = '''tdo -- A todo list tool for the terminal.
Available commands:
tdo Lists all undone tasks, sorted by category.
tdo all Lists all tasks.
tdo add "task" [list] Add a task to a certain list or the default list.
tdo edit id Edit a task description.
tdo done id Mark tha task with the ID 'id' as done.
tdo newlist "name" Create a new list named 'name'
tdo remove "list" Delete the list 'list'
tdo clean [list] Removes all tasks that have been marked as done.
If you specify a list name, only this list is cleared.
tdo lists List all lists with a statistic of undone/done tasks.
tdo help Display this help.
tdo reset DANGER ZONE. Delete all your todos and todo lists.
tdo themes Shows all available themes.
tdo settheme id Set the theme to <id>
tdo export filename Export all your todos to Markdown.'''
|
game_list = {
"games": [
"4story",
"8bitmmo",
"9dragons",
"9lives-arena",
"a-tale-in-the-desert",
"a3",
"a3-still-alive",
"aberoth",
"ace-online",
"achaea",
"ad2460",
"adventure-land",
"adventure-quest-3d",
"adventurequest-worlds",
"aetolia-the-midnight-age",
"age-of-conan-unchained",
"age-of-the-four-clans",
"age-of-wushu",
"age-of-wushu-dynasty",
"agents-of-aggro-city-online",
"aika",
"aion",
"aion-classic",
"airside-andy",
"akanbar",
"albion-online",
"allods-online",
"alphadia-genesis",
"anarchy-online",
"angels-online",
"angry-birds-epic",
"animal-crossing-new-horizons",
"anime-ninja",
"anime-pirates",
"anocris",
"anthem",
"antilia",
"apb-reloaded",
"apex-legends",
"aranock-online",
"arcane-legends",
"arcane-waters",
"arcfall",
"archeage",
"archeage-begins",
"archeage-unchained",
"archeblade",
"ark-survival-evolved",
"armed-heroes-2",
"armored-warfare",
"artifact",
"ashen-empires",
"ashes-of-creation-apocalypse",
"assassins-creed-valhalla",
"astaria",
"asteidus",
"astellia",
"astonia-reborn",
"astral-terra",
"astro-empires",
"astro-lords-oort-cloud",
"atlantica-online",
"atlas",
"atlas-reactor",
"atlas-rogues",
"atom-rpg",
"aura-kingdom",
"avalon-the-legend-lives",
"avatar-star",
"avernum-2-crystal-souls",
"avowed",
"azulgar",
"baldurs-gate-iii",
"barons-of-the-galaxy",
"battle-chasers",
"battle-dawn",
"battle-dawn-galaxies",
"battleborn",
"battlerite",
"black-aftermath",
"black-desert-mobile",
"black-desert-online",
"black-legend",
"black-prophecy-tactics-nexus-conflict",
"blackfaun",
"blackguards",
"blackguards-2",
"blacklight-retribution",
"blade-and-soul",
"blade-and-soul-2",
"blade-and-soul-revolution",
"blankos-block-party",
"bleach-online",
"bless-mobile",
"bless-unleashed",
"block-story",
"bloodborne",
"bloodline-champions",
"blossom-and-decay",
"bombshell",
"book-of-demons",
"book-of-travels",
"boot-hill-heroes",
"borderlands-2",
"borderlands-3",
"borderlands-the-pre-sequel",
"bound-by-flame",
"boundless",
"bounty-bay-online",
"bounty-hounds-online",
"bravada",
"brave-nine",
"bravely-default",
"bravely-default-ii",
"bravely-second",
"cabal-online",
"call-of-duty-warzone",
"call-of-gods",
"camelot-unchained",
"caravan-stories",
"cardlife",
"casinorpg",
"castlot",
"celtic-heroes",
"champions-of-regnum",
"champions-of-titan",
"champions-online",
"child-of-light",
"chroma-squad",
"chronicles-of-denzar",
"chrono-odyssey",
"chrono-tales",
"chrono-wars",
"citizens-of-earth",
"city-of-titans",
"clan-lord",
"clash-of-avatars",
"clash-of-clans",
"closers",
"colonies-online",
"command-and-conquer-tiberium-alliances",
"conan-exiles",
"conquer-online",
"conquerors-blade",
"continent-of-the-ninth-seal",
"core-exiles",
"cosmicbreak-universal",
"costume-quest-2",
"crimson-desert",
"cronous",
"crossfire",
"crossout",
"crowfall",
"crucible",
"crusader-kings-iii",
"crystal-saga",
"crystal-saga-2",
"cubic-castles",
"cuisine-royale",
"cyberpunk-2077",
"daimonin",
"damascus",
"dark-age-of-camelot",
"dark-ages",
"dark-and-light",
"dark-genesis",
"dark-knight",
"dark-legends",
"dark-souls-3",
"dark-souls-ii",
"darkest-dungeon",
"darkorbit-reloaded",
"darkspace",
"darkstory-online",
"darkwind-war-on-wheels",
"dauntless",
"dayz",
"dc-legends",
"dc-universe-online",
"ddtank",
"dead-by-daylight",
"dead-frontier",
"dead-frontier-ii",
"dead-island",
"dead-island-riptide",
"dead-maze",
"dead-state",
"deadside",
"deepworld",
"defend-the-night",
"defiance",
"defiance-2050",
"dekaron",
"deorum-online",
"desert-operations",
"destiny",
"destiny-2",
"destiny-of-ancient-kingdoms",
"destinys-sword",
"deus-ex-mankind-divided",
"diablo-3",
"diablo-ii-resurrected",
"diablo-immortal",
"diablo-iv",
"digimon-masters-online",
"dino-storm",
"disintegration",
"divergence-online",
"divinity-original-sin-2",
"divinity-original-sin",
"dk-online",
"dofus",
"dokev",
"doom-eternal",
"dota-2",
"drachenblut2",
"dragon-age-4",
"dragon-age-inquisition",
"dragon-awaken",
"dragon-blood",
"dragon-eternity",
"dragon-fin-soup",
"dragon-lord",
"dragon-nest",
"dragon-of-legends",
"dragon-pals",
"dragon-raja-online",
"dragon-saga",
"dragons-dogma-dark-arisen",
"dragonfable",
"dragons-and-titans",
"drakengard-3",
"drakensang-online",
"dransik-classic",
"dreadnought",
"dream-of-mirror-online",
"dreamworld",
"drifters-loot-the-galaxy",
"duelyst",
"dungeon-fighter-online",
"dungeon-hero",
"dungeon-hunter-5",
"dungeon-of-the-endless",
"dungeon-party",
"dungeons-and-dragons-online",
"dungeons-and-dragons-dark-alliance",
"dv8-exile",
"dying-light",
"dynastica",
"dynasty-of-the-magi",
"earthlock-festival-of-magic",
"echo-of-soul",
"echo-of-soul-phoenix",
"eden-eternal",
"eden-falling",
"edenbrawl",
"edengrad",
"edge-of-space",
"elden-ring",
"eldevin",
"elite-dangerous",
"elsword",
"elvenar",
"elyon",
"elysian-war",
"ember-sword",
"empire",
"empire-four-kingdoms",
"empire-of-sports",
"empire-universe-3",
"empire-warzone",
"empire-revenant",
"enlisted",
"entropia-universe",
"epicduel",
"erectus-the-game",
"eredan",
"erepublik",
"escape-from-tarkov",
"estogan",
"eternal-fury",
"eternal-lands",
"eternal-magic",
"etrian-mystery-dungeon",
"etrian-odyssey-2-untold-the-fafnir-knight",
"eudemons-online",
"eve-online",
"eve-valkyrie",
"everember-online",
"evernight",
"everquest",
"everquest-ii",
"everspace-2",
"evidyon-no-mans-land",
"evony",
"excalibur",
"exile-online",
"fire-special-ops",
"factions-origins-of-malu",
"fallen-earth",
"fallen-sword",
"fallout-4",
"fallout-76",
"fantasy-life",
"fantasy-realm-online-moon-haven",
"fantasy-tales-online",
"fantasy-worlds-rhynn",
"fasaria-world-online",
"fear-the-night",
"fear-the-wolves",
"fearless-fantasy",
"fellow-eternal-clash",
"felspire",
"fiesta-online",
"final-fantasy-type-0-hd",
"final-fantasy-vii-remake",
"final-fantasy-xx-2-remaster",
"final-fantasy-xi",
"final-fantasy-xv",
"final-fantasy-xvi",
"five-guardians-of-david",
"flamefrost-legacy",
"florensia",
"flyff-gold",
"football-superstars",
"force-of-arms",
"forge-of-empires",
"forsaken-world",
"fortnite",
"foxhole",
"fragmented",
"freeworld-apocalypse-portal",
"furcadia",
"galaxy-online-2",
"galaxy-warfare",
"game-of-thrones-winter-is-coming",
"games-of-glory",
"gates-of-andaron",
"gauntlet",
"gekkeiju-online",
"generals-art-of-war",
"genshin-impact",
"ghost-of-tsushima",
"gladiatus",
"gloria-victis",
"glory-of-gods",
"goal-line-blitz",
"godfall",
"godswar-online",
"graal-kingdoms",
"gran-saga",
"granado-espada-online",
"grand-fantasia",
"grand-theft-auto-online",
"grav",
"grepolis",
"grim-dawn",
"grounded",
"guardians-of-divinity",
"guardians-of-ember",
"guild-wars",
"guild-wars-factions",
"guild-wars-nightfall",
"habbo",
"halosphere2",
"hand-of-fate",
"haven-and-hearth",
"hawken",
"heart-forth-alicia",
"hearthstone",
"helbreath",
"hellgate",
"hello-kitty-online",
"hero-online",
"hero-wars",
"hero-zero",
"heroes-and-generals",
"heroes-and-legends-conquerors-of-kolhar",
"heroes-evolved",
"heroes-in-the-sky",
"heroes-of-atlan",
"heroes-of-gaia",
"heroes-of-newerth",
"heroes-of-the-storm",
"herosmash",
"hex-shards-of-fate",
"highlands",
"hob",
"hogwarts-legacy",
"hood-outlaws-and-legends",
"hordes",
"horizon-zero-dawn",
"hostile-space",
"humankind",
"hunters-arena-legends",
"hustle-castle",
"hyper-universe",
"i-am-setsuna",
"icewind-dale-enhanced-edition",
"ikariam",
"illyriad",
"ilysia",
"immortal-day",
"immortals-fenyx-rising",
"imperian",
"infantry-online",
"inferna",
"infestation-survivor-stories",
"infinite-fleet",
"inked-mafia",
"interstellar-war",
"ironsight",
"island-forge",
"islandoom",
"istaria-chronicles-of-the-gifted",
"kal-online",
"key-to-heaven",
"kingdom-come-deliverance",
"kingdom-of-drakkar",
"kingdom-under-fire-ii",
"kingdom-wars",
"kingdoms-of-amalur-re-reckoning",
"kingory",
"kings-and-heroes",
"kings-and-legends",
"kings-era",
"kings-of-the-realm",
"kingshunt",
"kingsroad",
"knight-online",
"kurtzpel",
"kyn",
"la-tale",
"last-chaos",
"last-epoch",
"last-oasis",
"league-of-angels",
"league-of-angels-heavens-fury",
"league-of-angels-ii",
"league-of-angels-iii",
"league-of-legends",
"league-of-legends-wild-rift",
"leap-of-fate",
"left-to-survive",
"legend-of-grimrock-2",
"legend-of-zelda-breath-of-the-wild",
"legends-of-aria",
"legends-of-equestria",
"legends-of-honor",
"legends-of-persia",
"legends-of-runeterra",
"liberators",
"lichdom-battlemage",
"life-beyond",
"life-is-feudal",
"life-of-rome",
"light-of-nova",
"line-of-defense",
"lineage-2",
"lineage-2-aden",
"lineage-2-essence",
"lineage-2-revolution",
"lineage-eternal-twilight-resistance",
"livelock",
"lord-of-chains",
"lord-of-the-rings-online",
"lords-of-the-fallen",
"lords-of-the-fallen-2",
"lost-dimension",
"lucent-heart",
"luckcatchers",
"luminary-rise-of-the-goonzu",
"lusternia-age-of-ascension",
"mabinogi",
"mad-max",
"mad-world-mmo",
"maelstrom",
"mafiashot",
"magic-duels-origins",
"magic-legends",
"magic-the-gathering-arena",
"manarocks",
"maplestory",
"maplestory-2",
"maplestory-m",
"march-to-rome",
"margonem",
"marvel-future-revolution",
"marvels-avengers",
"marvel-puzzle-quest",
"mass-effect-legendary-edition",
"mass-effect-andromeda",
"mechwarrior-online",
"meridian-59",
"merlin",
"metal-war-online",
"metin-2",
"middle-earth-shadow-of-mordor",
"might-and-magic-heroes-online",
"might-and-magic-x-legacy",
"milmo",
"minecraft",
"minecraft-dungeons",
"ministry-of-war",
"mirage-online-classic",
"monster-hunter-4-ultimate",
"monster-hunter-rise",
"monster-hunter-world",
"monstermmorpg",
"mordhau",
"mortal-online",
"mortal-shell",
"mount-and-blade-ii-bannerlord",
"mu-legend",
"mu-online",
"mu-origin",
"mu-origin-2",
"my-lands",
"myst-online-uru-live",
"myth-war-2",
"mythborne",
"mytheon",
"naruto-online",
"naval-action",
"navy-field",
"navy-field-2",
"necropolis",
"nemexia",
"neocron-2",
"nether",
"neverwinter",
"new-dawn",
"new-world",
"next-island",
"nexus-the-kingdom-of-the-winds",
"nioh-2",
"no-mans-sky",
"nords-heroes-of-the-north",
"nostale",
"nova-genesis",
"oberin",
"odin-quest",
"ogre-island",
"old-world",
"omega-zodiac",
"omerta-3",
"one-piece-online",
"one-piece-online-2-pirate-king",
"online-boxing-manager",
"online-tennis-manager",
"orake",
"orbusvr",
"orcs-must-die-3",
"order-and-chaos-2-redemption",
"order-and-chaos-online",
"order-of-magic",
"origins-return",
"orions-belt",
"osiris-new-dawn",
"otherland",
"out-of-reach",
"outlaws-of-the-old-west",
"outriders",
"outwar",
"overkings",
"oversoul",
"overwatch",
"oz-broken-kingdom",
"pagan-online",
"paladins-champions-of-the-realm",
"palia",
"panzar",
"past-fate",
"path-of-exile",
"pathfinder-online",
"perfect-world-international",
"perfect-world-mobile",
"persona-5",
"persona-5-royal",
"persona-q-shadow-of-the-labyrinth",
"phantasy-star-online-2",
"phoenix-dynasty-2",
"piercing-blow",
"pillars-of-eternity",
"pillars-of-eternity-2-deadfire",
"pirate-arena",
"pirate-galaxy",
"pirate-king-online",
"pirate-storm",
"pirate101",
"pirates-of-the-burning-sea",
"pirates-tides-of-fortune",
"planeshift",
"planet-arkadia",
"planet-calypso",
"planetside-2",
"playable-worlds",
"playerunknowns-battlegrounds",
"pocket-legends",
"pokemon-go",
"pokemon-xy",
"population-zero",
"portal-knights",
"pox-nora",
"predator-hunting-grounds",
"preta-vendetta-rising",
"prime-world",
"priston-tale",
"profane",
"project-genom",
"project-gorgon",
"project-ion",
"project-x-zone-2",
"project-zomboid",
"prosperous-universe",
"quest-for-infamy",
"r2-online-reign-of-revolution",
"radical-heights",
"rage-of-3-kingdoms",
"ragewar",
"ragnarok-online",
"ragnarok-online-ii",
"ragnarok-online-transcendence",
"ragnarok-origin",
"raid-shadow-legends",
"rail-nation",
"rakion",
"ran-online",
"rangers-of-oblivion",
"rappelz",
"rappelzsea",
"rapture-rejects",
"realm-of-the-mad-god",
"realm-royale",
"rebel-galaxy",
"rebirth-fantasy",
"record-of-lodoss-war-online",
"red-dead-online",
"red-stone",
"redemptions-guild",
"redfall",
"regnum-online",
"remnant-from-the-ashes",
"rend",
"requiem-memento-mori",
"revelation-online",
"riders-of-icarus",
"riders-republic",
"rift",
"rimworld",
"ring-of-elysium",
"riotzone",
"rise",
"rise-of-the-tycoon",
"risen-3-titan-lords",
"rivality",
"roblox",
"robocraft",
"rocket-league",
"rogalia",
"rogue-company",
"rohan-blood-feud",
"romadoria",
"rosh-online",
"roto-x",
"royal-quest",
"rulers-of-the-sea",
"rumble-fighter",
"runes-of-magic",
"runescape",
"rust",
"ryzom",
"s4-league",
"sacred-3",
"saga",
"salem",
"samutale",
"savage-lands",
"scarlet-nexus",
"scars-of-honor",
"scavengers",
"scions-of-fate-yulgang",
"sea-of-thieves",
"seal-online-blades-of-destiny",
"seas-of-gold",
"second-life",
"serenia-fantasy",
"seven-seas-saga",
"shadow-arena",
"shadowbound",
"shadowgate",
"shadowgun-legends",
"shadowrun-chronicles",
"shadowrun-returns",
"shadowrun-hong-kong",
"shadowverse",
"shaiya",
"shattered-galaxy",
"shin-megami-tensei-devil-survivor-2-record-breaker",
"ship-of-heroes",
"shot-online",
"shroud-of-the-avatar",
"siegefall",
"siegelord",
"silkroad-online",
"skull-and-bones",
"skyclimbers",
"skyforge",
"skylanders-battlecast",
"smite",
"solasta-crown-of-the-magister",
"soldiers-inc",
"soul-order-online-2",
"soulworker",
"south-park-stick-of-truth",
"space-wars-interstellar-empires",
"sparta-war-of-empires",
"spellbreak",
"spellgear",
"spellstone",
"sphere-3",
"spiral-knights",
"splitgate-arena-warfare",
"star-citizen",
"star-colony",
"star-conflict",
"star-crusade-war-for-the-expanse",
"star-legends",
"star-ocean-5-integrity-and-faithlessness",
"star-sonata-2",
"star-stable",
"star-trek-online",
"star-wars-battlefront-ii",
"star-wars-squadrons",
"star-wars-the-old-republic",
"starbase",
"starborne",
"starborne-frontiers",
"starbound",
"starfield",
"starport-galactic-empires",
"stash-no-loot-left-behind",
"state-of-decay",
"steambirds-alliance",
"steamcraft",
"steinworld",
"stoneage-world",
"storm-riders",
"stormfall-age-of-war",
"stormthrone",
"stranger-of-paradise",
"stronghold-kingdoms",
"styx-master-of-shadows",
"supernova",
"supremacy-1914",
"supreme-destiny",
"survarium",
"sword-coast-legends",
"swords-of-legends-online",
"tales-of-symphonia-chronicles",
"tales-of-zestiria",
"talisman-online",
"tamer-saga",
"tantra-online",
"tantra-rumble",
"temtem",
"tentlan",
"tera",
"terraria",
"thang-online",
"the-4th-coming",
"the-aetherlight-chronicles-of-the-resistance",
"the-ascent",
"the-banner-saga",
"the-banner-saga-2",
"the-black-death",
"the-black-watchmen",
"the-crew",
"the-crew-2",
"the-division",
"the-division-2",
"the-dwarves",
"the-elder-scrolls-blades",
"the-end",
"the-epic-might",
"the-exiled",
"the-hammers-end",
"the-incredible-adventures-of-van-helsing",
"the-incredible-adventures-of-van-helsing-2",
"the-incredible-adventures-of-van-helsing-iii",
"the-legend-of-legacy",
"the-legend-of-pirates-online",
"the-mighty-quest-for-epic-loot",
"the-mob-wars",
"the-outer-worlds",
"the-pride-of-taern",
"the-realm-online",
"the-repopulation",
"the-settlers-online",
"the-skies",
"the-technomancer",
"the-wagadu-chronicles",
"the-waylanders",
"the-west",
"the-witcher-3-wild-hunt",
"there",
"therian-saga",
"thunder-run-firestrike",
"tibia",
"tibia-micro-edition",
"tiger-knight",
"titan-siege",
"titanreach",
"titans-of-time",
"torchlight-2",
"torchlight-iii",
"torment-tides-of-numenera",
"total-domination",
"total-war-saga-troy",
"total-war-three-kingdoms",
"total-war-arena",
"transistor",
"trapped-dead-lockdown",
"travian",
"travian-kingdoms",
"tree-of-life",
"tree-of-savior",
"trials-of-mana",
"tribal-wars",
"tribes-of-midgard",
"tribes-ascend",
"trove",
"tug",
"turf-battles",
"twin-saga",
"tynon",
"tyranny",
"ufo-online",
"ultima-online",
"uncharted-waters-online",
"underlight-clash-of-dreams",
"underworld-ascendant",
"unification-wars",
"unlimited-ninja",
"utopia",
"v-rising",
"v4",
"vainglory",
"valdis-story-abyssal-city",
"valheim",
"valiance-online",
"valnir-rok",
"valorant",
"vampire-the-masquerade-bloodlines-2",
"vampyr",
"vendetta-online",
"victor-vran",
"victory-age-of-racing",
"vikings-war-of-clans",
"villagers-and-heroes",
"vindictus",
"virtonomics-economics-game-online",
"visions-of-zosimos",
"voidexpanse",
"voyage-century-online",
"wakfu",
"war-of-mercenaries",
"war-thunder",
"war2-glory",
"warflare",
"wargame1942",
"warhammer-40k-inquisitor-martyr",
"warhammer-chaosbane",
"warhammer-odyssey",
"warmonger",
"warp-nexus",
"wartune",
"wasteland-2",
"wasteland-3",
"waven",
"we-ride",
"weapons-of-mythology",
"wild-terra",
"wild-west-online",
"wind-of-luck-arena",
"wings-of-destiny",
"winning-putt",
"with-your-destiny",
"wizard101",
"wolcen-lords-of-mayhem",
"world-golf-tour",
"world-of-kung-fu",
"world-of-tanks",
"world-of-trinketz",
"world-of-warcraft",
"world-of-warplanes",
"world-of-warriors",
"world-of-warships",
"world-war-online",
"worldalpha",
"worlds-adrift",
"wurm-online",
"wwii-online",
"xcom-chimera-squad",
"xenoblade-chronicles-3d",
"xenoblade-chronicles-definitive-edition",
"xenoblade-chronicles-x",
"xsyon-prelude",
"xulu",
"yohoho-puzzle-pirates",
"z1-battle-royale",
"zeal",
"zenith",
"zodiac"
]
}
|
# coding=utf8
# Copyright 2018 JDCLOUD.COM
#
# 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://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# NOTE: This class is auto generated by the jdcloud code generator program.
class TranscodeOutputConfig(object):
def __init__(self, outputList, accessKey=None, secretKey=None, endpoint=None, bucket=None):
"""
:param accessKey: (Optional) 输出对象存储 accessKey,可选参数,默认与输入 accessKey 保持一致
:param secretKey: (Optional) 输出对象存储 secretKey,可选参数,默认与输入 secretKey 保持一致
:param endpoint: (Optional) 输出对象存储 endpoint,可选参数,默认与输入 endpoint 保持一致,如 s3.cn-north-1.jcloudcs.com
:param bucket: (Optional) 输出对象存储 bucket,可选参数,默认与输入 bucket 保持一致
:param outputList: 输出集合,必须参数,非空集
"""
self.accessKey = accessKey
self.secretKey = secretKey
self.endpoint = endpoint
self.bucket = bucket
self.outputList = outputList
|
# For demonstration this will serve as the database of partners
# For real implementation this will come from a database.
# Both partnerId and key should be shared between services.
partners = {
'abcd123' : { # this is partner ssoId (abcd123)
'name': 'Partner 1 inc.',
'shared_key' : '5f4dcc3b5aa765d61d8327deb882cf99',
'is_active' : True
},
'abcd1234':{ # this is partner ssoId (abcd1234)
'name' : 'Partner 2 inc.',
'shared_key' : '482c811da5d5b4bc6d497ffa98491e38',
'is_active' : False
}
}
|
#!/usr/bin/env python3
steps = 10
with open('input.txt', 'r') as f:
lines = f.read().splitlines()
initial_string = lines[0]
mapping = {}
for line in lines:
if '->' in line:
x,y=line.split(" -> ")
replacement_text = x[0]+y
mapping[x] = replacement_text
for _ in range(1, steps+1):
processed_string = ''
for i in range(0, len(initial_string)):
if i == len(initial_string)-1:
processed_string += initial_string[i]
else:
pair = initial_string[i]+initial_string[i+1]
processed_string += mapping[pair]
initial_string = processed_string
unique = list(set(processed_string))
values = []
for letter in unique:
values.append(processed_string.count(letter))
print(f"{max(values)} - {min(values)} = {max(values)-min(values)}")
|
#Occurance of a word in text file
Text = open("abc.txt","r")
d = dict() #Dictionary to store words(keys) and its iterations(values)
# iterate through each line in txt file
for line in Text:
line = line.strip() #remove leading space and \n chrtr
line = line.lower() #convert to lower case
words = line.split(" ") # Spilit line with space
for word in words:
if word in d:
d[word] += 1
else:
d[word] = 1
for key in list(d.keys()):
print (key, ":", d[key])
|
# Easy horntail gem
sm.spawnMob(8810102, 95, 260, False)
sm.spawnMob(8810103, 95, 260, False)
sm.spawnMob(8810104, 95, 260, False)
sm.spawnMob(8810105, 95, 260, False)
sm.spawnMob(8810106, 95, 260, False)
sm.spawnMob(8810107, 95, 260, False)
sm.spawnMob(8810108, 95, 260, False)
sm.spawnMob(8810109, 95, 260, False)
sm.spawnMob(8810118, 95, 260, False, 10000000000) #10,000,000,000
sm.removeReactor()
|
# file generated by setuptools_scm
# don't change, don't track in version control
version = "0.1.dev1+ga7b326d.d20210618"
version_tuple = (0, 1, "dev1+ga7b326d", "d20210618")
|
"""
Prepare arguments for goldclip pipeline
"""
def args_init(args=None, demx=False, trim=False, align=False, call_peak=False):
"""Inititate the arguments, assign the default values to arg
"""
if isinstance(args, dict):
pass
elif args is None:
args = {} # init dictionary
else:
raise Exception('unknown argument: args=%s' % args)
args['fq1'] = args.get('fq1', None)
args['fq2'] = args.get('fq2', None)
args['path_out'] = args.get('path_out', None)
## optional
args['genome_path'] = args.get('genome_path', None)
args['overwrite'] = args.get('overwrite', False)
args['threads'] = args.get('threads', 8)
## demx
if demx:
args['demx_type'] = args.get('demx_type', 'p7') # p7, barcode, both
args['n_mismatch'] = args.get('n_mismatch', 0)
args['bc_n_left'] = args.get('bc_n_left', 3)
args['bc_n_right'] = args.get('bc_n_right', 2)
args['bc_in_read'] = args.get('bc_in_read', 1)
args['cut'] = args.get('cut', False)
## trimming
if trim:
args['adapter3'] = args.get('adapter3', 'AGATCGGAAGAGCACACGTCTGAACTCCAGTCAC')
args['len_min'] = args.get('len_min', 15)
args['adapter5'] = args.get('adapter5', '')
args['qual_min'] = args.get('qual_min', 20)
args['error_rate'] = args.get('error_rate', 0.1)
args['overlap'] = args.get('overlap', 3)
args['percent'] = args.get('percent', 80)
args['rm_untrim'] = args.get('rm_untrim', False)
args['keep_name'] = args.get('keep_name', True)
args['adapter_sliding'] = args.get('adapter_sliding', False)
args['trim_times'] = args.get('trim_times', 1)
args['double_trim'] = args.get('double_trim', False)
args['rm_dup'] = args.get('rm_dup', True)
args['cut_before_trim'] = args.get('cut_before_trim', '0')
args['cut_after_trim'] = args.get('cut_after_trim', '7,-7') # NSR
args['trim_to_length'] = args.get('trim_to_length', 0)
## PE trimming options
args['AD3'] = args.get('AD3', 'AGATCGGAAGAGCGTCGTGTAGGGAAAGAGTGT')
args['AD5'] = args.get('AD5', None)
## alignment
if align:
args['spikein'] = args.get('spikein', None)
args['index_ext'] = args.get('index_ext', None)
args['unique_only'] = args.get('unique_only', True) # unique map
args['aligner'] = args.get('aligner', 'bowtie') # bowtie alignment
args['align-to-rRNA'] = args.get('align-to-rRNA', True)
args['n_map'] = args.get('n_map', 0)
args['align_to_rRNA'] = args.get('align_to_rRNA', True)
args['repeat_masked_genome'] = args.get('repeat_masked_genome', False)
args['merge_rep'] = args.get('merge_rep', True)
## peak-calling
if call_peak:
args['peak_caller'] = args.get('peak_caller', 'pyicoclip')
## rtstop-calling
args['threshold'] = args.get('threshold', 1)
args['intersect'] = args.get('intersect', 0)
args['threads'] = args.get('threads', 8)
return args
|
pattern_zero=[0.0, 0.024983563445, 0.048652202498, 0.051282051282, 0.07100591716, 0.076265614727, 0.092044707429, 0.09993425378, 0.102564102564, 0.111768573307, 0.122287968442, 0.127547666009, 0.130177514793, 0.143326758711, 0.147271531887, 0.151216305062, 0.153846153846, 0.163050624589, 0.173570019724, 0.177514792899, 0.178829717291, 0.181459566075, 0.190664036818, 0.194608809993, 0.198553583169, 0.202498356345, 0.205128205128, 0.213017751479, 0.214332675871, 0.222222222222, 0.224852071006, 0.228796844181, 0.230111768573, 0.232741617357, 0.236686390533, 0.2419460881, 0.245890861275, 0.248520710059, 0.249835634451, 0.253780407627, 0.25641025641, 0.264299802761, 0.265614727153, 0.273504273504, 0.276134122288, 0.280078895464, 0.281393819855, 0.284023668639, 0.287968441815, 0.293228139382, 0.297172912558, 0.299802761341, 0.301117685733, 0.305062458909, 0.307692307692, 0.315581854043, 0.316896778435, 0.324786324786, 0.32741617357, 0.331360946746, 0.332675871137, 0.335305719921, 0.339250493097, 0.344510190664, 0.34845496384, 0.351084812623, 0.352399737015, 0.356344510191, 0.358974358974, 0.366863905325, 0.368178829717, 0.376068376068, 0.378698224852, 0.382642998028, 0.383957922419, 0.386587771203, 0.390532544379, 0.395792241946, 0.399737015122, 0.402366863905, 0.403681788297, 0.407626561473, 0.410256410256, 0.418145956607, 0.419460880999, 0.42735042735, 0.429980276134, 0.43392504931, 0.435239973702, 0.437869822485, 0.441814595661, 0.447074293228, 0.451019066404, 0.453648915187, 0.454963839579, 0.458908612755, 0.461538461538, 0.46942800789, 0.470742932281, 0.478632478632, 0.481262327416, 0.485207100592, 0.486522024984, 0.489151873767, 0.493096646943, 0.49835634451, 0.502301117686, 0.504930966469, 0.506245890861, 0.510190664037, 0.512820512821, 0.520710059172, 0.522024983563, 0.529914529915, 0.532544378698, 0.536489151874, 0.537804076266, 0.540433925049, 0.544378698225, 0.549638395792, 0.553583168968, 0.556213017751, 0.557527942143, 0.561472715319, 0.564102564103, 0.571992110454, 0.573307034845, 0.581196581197, 0.58382642998, 0.587771203156, 0.589086127548, 0.591715976331, 0.595660749507, 0.600920447074, 0.60486522025, 0.607495069034, 0.608809993425, 0.612754766601, 0.615384615385, 0.623274161736, 0.624589086128, 0.632478632479, 0.635108481262, 0.639053254438, 0.64036817883, 0.642998027613, 0.646942800789, 0.652202498356, 0.656147271532, 0.658777120316, 0.660092044707, 0.664036817883, 0.666666666667, 0.674556213018, 0.67587113741, 0.683760683761, 0.686390532544, 0.69033530572, 0.691650230112, 0.694280078895, 0.698224852071, 0.703484549638, 0.707429322814, 0.710059171598, 0.711374095989, 0.715318869165, 0.717948717949, 0.7258382643, 0.727153188692, 0.735042735043, 0.737672583826, 0.741617357002, 0.742932281394, 0.745562130178, 0.749506903353, 0.75476660092, 0.758711374096, 0.76134122288, 0.762656147272, 0.766600920447, 0.769230769231, 0.777120315582, 0.778435239974, 0.786324786325, 0.788954635108, 0.792899408284, 0.794214332676, 0.79684418146, 0.800788954635, 0.806048652202, 0.809993425378, 0.812623274162, 0.813938198554, 0.817882971729, 0.820512820513, 0.828402366864, 0.829717291256, 0.837606837607, 0.840236686391, 0.844181459566, 0.845496383958, 0.848126232742, 0.852071005917, 0.857330703485, 0.86127547666, 0.863905325444, 0.865220249836, 0.869165023011, 0.871794871795, 0.879684418146, 0.880999342538, 0.888888888889, 0.891518737673, 0.895463510848, 0.89677843524, 0.899408284024, 0.903353057199, 0.908612754767, 0.912557527942, 0.915187376726, 0.916502301118, 0.920447074293, 0.923076923077, 0.930966469428, 0.93228139382, 0.940170940171, 0.942800788955, 0.94674556213, 0.948060486522, 0.950690335306, 0.954635108481, 0.959894806049, 0.963839579224, 0.966469428008, 0.9677843524, 0.971729125575, 0.974358974359, 0.98224852071, 0.983563445102, 0.991452991453, 0.994082840237, 0.998027613412, 0.999342537804]
pattern_odd=[0.001972386588, 0.005917159763, 0.011176857331, 0.015121630506, 0.01775147929, 0.019066403682, 0.023011176857, 0.025641025641, 0.033530571992, 0.034845496384, 0.042735042735, 0.045364891519, 0.049309664694, 0.050624589086, 0.05325443787, 0.057199211045, 0.062458908613, 0.066403681788, 0.069033530572, 0.070348454964, 0.074293228139, 0.076923076923, 0.084812623274, 0.086127547666, 0.094017094017, 0.096646942801, 0.100591715976, 0.101906640368, 0.104536489152, 0.108481262327, 0.113740959895, 0.11768573307, 0.120315581854, 0.121630506246, 0.125575279421, 0.128205128205, 0.136094674556, 0.137409598948, 0.145299145299, 0.147928994083, 0.151873767258, 0.15318869165, 0.155818540434, 0.159763313609, 0.165023011177, 0.168967784352, 0.171597633136, 0.172912557528, 0.176857330703, 0.179487179487, 0.187376725838, 0.18869165023, 0.196581196581, 0.199211045365, 0.20315581854, 0.204470742932, 0.207100591716, 0.211045364892, 0.216305062459, 0.220249835634, 0.222879684418, 0.22419460881, 0.228139381986, 0.230769230769, 0.23865877712, 0.239973701512, 0.247863247863, 0.250493096647, 0.254437869822, 0.255752794214, 0.258382642998, 0.262327416174, 0.267587113741, 0.271531886917, 0.2741617357, 0.275476660092, 0.279421433268, 0.282051282051, 0.289940828402, 0.291255752794, 0.299145299145, 0.301775147929, 0.305719921105, 0.307034845496, 0.30966469428, 0.313609467456, 0.318869165023, 0.322813938199, 0.325443786982, 0.326758711374, 0.33070348455, 0.333333333333, 0.341222879684, 0.342537804076, 0.350427350427, 0.353057199211, 0.357001972387, 0.358316896778, 0.360946745562, 0.364891518738, 0.370151216305, 0.374095989481, 0.376725838264, 0.378040762656, 0.381985535832, 0.384615384615, 0.392504930966, 0.393819855358, 0.401709401709, 0.404339250493, 0.408284023669, 0.40959894806, 0.412228796844, 0.41617357002, 0.421433267587, 0.425378040763, 0.428007889546, 0.429322813938, 0.433267587114, 0.435897435897, 0.443786982249, 0.44510190664, 0.452991452991, 0.455621301775, 0.459566074951, 0.460880999343, 0.463510848126, 0.467455621302, 0.472715318869, 0.476660092045, 0.479289940828, 0.48060486522, 0.484549638396, 0.487179487179, 0.495069033531, 0.496383957922, 0.504273504274, 0.506903353057, 0.510848126233, 0.512163050625, 0.514792899408, 0.518737672584, 0.523997370151, 0.527942143327, 0.53057199211, 0.531886916502, 0.535831689678, 0.538461538462, 0.546351084813, 0.547666009204, 0.555555555556, 0.558185404339, 0.562130177515, 0.563445101907, 0.56607495069, 0.570019723866, 0.575279421433, 0.579224194609, 0.581854043393, 0.583168967784, 0.58711374096, 0.589743589744, 0.597633136095, 0.598948060487, 0.606837606838, 0.609467455621, 0.613412228797, 0.614727153189, 0.617357001972, 0.621301775148, 0.626561472715, 0.630506245891, 0.633136094675, 0.634451019066, 0.638395792242, 0.641025641026, 0.648915187377, 0.650230111769, 0.65811965812, 0.660749506903, 0.664694280079, 0.666009204471, 0.668639053254, 0.67258382643, 0.677843523997, 0.681788297173, 0.684418145957, 0.685733070348, 0.689677843524, 0.692307692308, 0.700197238659, 0.701512163051, 0.709401709402, 0.712031558185, 0.715976331361, 0.717291255753, 0.719921104536, 0.723865877712, 0.729125575279, 0.733070348455, 0.735700197239, 0.737015121631, 0.740959894806, 0.74358974359, 0.751479289941, 0.752794214333, 0.760683760684, 0.763313609467, 0.767258382643, 0.768573307035, 0.771203155819, 0.775147928994, 0.780407626561, 0.784352399737, 0.786982248521, 0.788297172913, 0.792241946088, 0.794871794872, 0.802761341223, 0.804076265615, 0.811965811966, 0.81459566075, 0.818540433925, 0.819855358317, 0.822485207101, 0.826429980276, 0.831689677844, 0.835634451019, 0.838264299803, 0.839579224195, 0.84352399737, 0.846153846154, 0.854043392505, 0.855358316897, 0.863247863248, 0.865877712032, 0.869822485207, 0.871137409599, 0.873767258383, 0.877712031558, 0.882971729126, 0.886916502301, 0.889546351085, 0.890861275477, 0.894806048652, 0.897435897436, 0.905325443787, 0.906640368179, 0.91452991453, 0.917159763314, 0.921104536489, 0.922419460881, 0.925049309665, 0.92899408284, 0.934253780408, 0.938198553583, 0.940828402367, 0.942143326759, 0.946088099934, 0.948717948718, 0.956607495069, 0.957922419461, 0.965811965812, 0.968441814596, 0.972386587771, 0.973701512163, 0.976331360947, 0.980276134122, 0.98553583169, 0.989480604865, 0.992110453649, 0.993425378041, 0.997370151216]
pattern_even=[0.0, 0.00788954635, 0.00920447074, 0.01709401709, 0.01972386588, 0.02366863905, 0.02498356345, 0.02761341223, 0.0315581854, 0.03681788297, 0.04076265615, 0.04339250493, 0.04470742932, 0.0486522025, 0.05128205128, 0.05917159763, 0.06048652203, 0.06837606838, 0.07100591716, 0.07495069034, 0.07626561473, 0.07889546351, 0.08284023669, 0.08809993425, 0.09204470743, 0.09467455621, 0.09598948061, 0.09993425378, 0.10256410256, 0.11045364892, 0.11176857331, 0.11965811966, 0.12228796844, 0.12623274162, 0.12754766601, 0.13017751479, 0.13412228797, 0.13938198554, 0.14332675871, 0.1459566075, 0.14727153189, 0.15121630506, 0.15384615385, 0.1617357002, 0.16305062459, 0.17094017094, 0.17357001972, 0.1775147929, 0.17882971729, 0.18145956608, 0.18540433925, 0.19066403682, 0.19460880999, 0.19723865878, 0.19855358317, 0.20249835635, 0.20512820513, 0.21301775148, 0.21433267587, 0.22222222222, 0.22485207101, 0.22879684418, 0.23011176857, 0.23274161736, 0.23668639053, 0.2419460881, 0.24589086128, 0.24852071006, 0.24983563445, 0.25378040763, 0.25641025641, 0.26429980276, 0.26561472715, 0.2735042735, 0.27613412229, 0.28007889546, 0.28139381986, 0.28402366864, 0.28796844182, 0.29322813938, 0.29717291256, 0.29980276134, 0.30111768573, 0.30506245891, 0.30769230769, 0.31558185404, 0.31689677844, 0.32478632479, 0.32741617357, 0.33136094675, 0.33267587114, 0.33530571992, 0.3392504931, 0.34451019066, 0.34845496384, 0.35108481262, 0.35239973702, 0.35634451019, 0.35897435897, 0.36686390533, 0.36817882972, 0.37606837607, 0.37869822485, 0.38264299803, 0.38395792242, 0.3865877712, 0.39053254438, 0.39579224195, 0.39973701512, 0.40236686391, 0.4036817883, 0.40762656147, 0.41025641026, 0.41814595661, 0.419460881, 0.42735042735, 0.42998027613, 0.43392504931, 0.4352399737, 0.43786982249, 0.44181459566, 0.44707429323, 0.4510190664, 0.45364891519, 0.45496383958, 0.45890861276, 0.46153846154, 0.46942800789, 0.47074293228, 0.47863247863, 0.48126232742, 0.48520710059, 0.48652202498, 0.48915187377, 0.49309664694, 0.49835634451, 0.50230111769, 0.50493096647, 0.50624589086, 0.51019066404, 0.51282051282, 0.52071005917, 0.52202498356, 0.52991452992, 0.5325443787, 0.53648915187, 0.53780407627, 0.54043392505, 0.54437869823, 0.54963839579, 0.55358316897, 0.55621301775, 0.55752794214, 0.56147271532, 0.5641025641, 0.57199211045, 0.57330703485, 0.5811965812, 0.58382642998, 0.58777120316, 0.58908612755, 0.59171597633, 0.59566074951, 0.60092044707, 0.60486522025, 0.60749506903, 0.60880999343, 0.6127547666, 0.61538461539, 0.62327416174, 0.62458908613, 0.63247863248, 0.63510848126, 0.63905325444, 0.64036817883, 0.64299802761, 0.64694280079, 0.65220249836, 0.65614727153, 0.65877712032, 0.66009204471, 0.66403681788, 0.66666666667, 0.67455621302, 0.67587113741, 0.68376068376, 0.68639053254, 0.69033530572, 0.69165023011, 0.6942800789, 0.69822485207, 0.70348454964, 0.70742932281, 0.7100591716, 0.71137409599, 0.71531886917, 0.71794871795, 0.7258382643, 0.72715318869, 0.73504273504, 0.73767258383, 0.741617357, 0.74293228139, 0.74556213018, 0.74950690335, 0.75476660092, 0.7587113741, 0.76134122288, 0.76265614727, 0.76660092045, 0.76923076923, 0.77712031558, 0.77843523997, 0.78632478633, 0.78895463511, 0.79289940828, 0.79421433268, 0.79684418146, 0.80078895464, 0.8060486522, 0.80999342538, 0.81262327416, 0.81393819855, 0.81788297173, 0.82051282051, 0.82840236686, 0.82971729126, 0.83760683761, 0.84023668639, 0.84418145957, 0.84549638396, 0.84812623274, 0.85207100592, 0.85733070349, 0.86127547666, 0.86390532544, 0.86522024984, 0.86916502301, 0.8717948718, 0.87968441815, 0.88099934254, 0.88888888889, 0.89151873767, 0.89546351085, 0.89677843524, 0.89940828402, 0.9033530572, 0.90861275477, 0.91255752794, 0.91518737673, 0.91650230112, 0.92044707429, 0.92307692308, 0.93096646943, 0.93228139382, 0.94017094017, 0.94280078896, 0.94674556213, 0.94806048652, 0.95069033531, 0.95463510848, 0.95989480605, 0.96383957922, 0.96646942801, 0.9677843524, 0.97172912558, 0.97435897436, 0.98224852071, 0.9835634451, 0.99145299145, 0.99408284024, 0.99802761341, 0.9993425378]
averages_even={0.0: [0.0], 0.7258382643: [0.6923076923077, 0.3076923076923], 0.48126232742: [0.0769230769231, 0.9230769230769], 0.67587113741: [0.2051282051282, 0.1282051282051, 0.7948717948718, 0.8717948717949], 0.05128205128: [0.0], 0.68376068376: [0.6666666666667, 0.3333333333333], 0.1775147929: [0.7692307692308, 0.2307692307692], 0.60092044707: [0.4102564102564, 0.2564102564103, 0.5897435897436, 0.7435897435897], 0.0486522025: [0.2820512820513, 0.9487179487179, 0.7179487179487, 0.0512820512821], 0.63510848126: [0.0769230769231, 0.9230769230769], 0.81262327416: [0.5384615384615, 0.4615384615385], 0.29980276134: [0.5384615384615, 0.4615384615385], 0.70348454964: [0.4102564102564, 0.2564102564103, 0.5897435897436, 0.7435897435897], 0.65877712032: [0.5384615384615, 0.4615384615385], 0.28007889546: [0.7692307692308, 0.2307692307692], 0.89151873767: [0.0769230769231, 0.9230769230769], 0.88099934254: [0.2051282051282, 0.1282051282051, 0.7948717948718, 0.8717948717949], 0.13938198554: [0.4102564102564, 0.5897435897436, 0.2564102564103, 0.7435897435897], 0.29717291256: [0.5641025641026, 0.1025641025641, 0.8974358974359, 0.4358974358974], 0.22879684418: [0.7692307692308, 0.2307692307692], 0.8060486522: [0.4102564102564, 0.2564102564103, 0.5897435897436, 0.7435897435897], 0.08284023669: [0.3846153846154, 0.6153846153846], 0.24589086128: [0.5641025641026, 0.1025641025641, 0.8974358974359, 0.4358974358974], 0.84023668639: [0.0769230769231, 0.9230769230769], 0.34845496384: [0.5641025641026, 0.1025641025641, 0.8974358974359, 0.4358974358974], 0.55358316897: [0.5641025641026, 0.1025641025641, 0.8974358974359, 0.4358974358974], 0.49835634451: [0.4102564102564, 0.2564102564103, 0.5897435897436, 0.7435897435897], 0.79421433268: [0.025641025641, 0.6410256410256, 0.3589743589744, 0.974358974359], 0.38264299803: [0.7692307692308, 0.2307692307692], 0.94280078896: [0.0769230769231, 0.9230769230769], 0.09993425378: [0.2820512820513, 0.9487179487179, 0.7179487179487, 0.0512820512821], 0.02498356345: [0.025641025641, 0.6410256410256, 0.3589743589744, 0.974358974359], 0.58382642998: [0.0769230769231, 0.9230769230769], 0.25641025641: [0.0], 0.69033530572: [0.7692307692308, 0.2307692307692], 0.2735042735: [0.6666666666667, 0.3333333333333], 0.06837606838: [0.3333333333333, 0.6666666666667], 0.43392504931: [0.7692307692308, 0.2307692307692], 0.7100591716: [0.5384615384615, 0.4615384615385], 0.5811965812: [0.6666666666667, 0.3333333333333], 0.97172912558: [0.2820512820513, 0.9487179487179, 0.7179487179487, 0.0512820512821], 0.4510190664: [0.5641025641026, 0.1025641025641, 0.8974358974359, 0.4358974358974], 0.7587113741: [0.5641025641026, 0.1025641025641, 0.8974358974359, 0.4358974358974], 0.30769230769: [0.0], 0.95069033531: [0.8461538461538, 0.1538461538462], 0.57330703485: [0.2051282051282, 0.1282051282051, 0.7948717948718, 0.8717948717949], 0.32478632479: [0.6666666666667, 0.3333333333333], 0.48520710059: [0.7692307692308, 0.2307692307692], 0.17094017094: [0.6666666666667, 0.3333333333333], 0.54043392505: [0.8461538461538, 0.1538461538462], 0.78632478633: [0.6666666666667, 0.3333333333333], 0.86127547666: [0.5641025641026, 0.1025641025641, 0.8974358974359, 0.4358974358974], 0.35897435897: [0.0], 0.89940828402: [0.8461538461538, 0.1538461538462], 0.89546351085: [0.7692307692308, 0.2307692307692], 0.05917159763: [0.6923076923077, 0.3076923076923], 0.37606837607: [0.6666666666667, 0.3333333333333], 0.60880999343: [0.5128205128205, 0.1794871794872, 0.4871794871795, 0.8205128205128], 0.30506245891: [0.2820512820513, 0.9487179487179, 0.7179487179487, 0.0512820512821], 0.64299802761: [0.8461538461538, 0.1538461538462], 0.96383957922: [0.5641025641026, 0.1025641025641, 0.8974358974359, 0.4358974358974], 0.10256410256: [0.0], 0.20512820513: [0.0], 0.90861275477: [0.4102564102564, 0.2564102564103, 0.5897435897436, 0.7435897435897], 0.94674556213: [0.7692307692308, 0.2307692307692], 0.42735042735: [0.6666666666667, 0.3333333333333], 0.71137409599: [0.5128205128205, 0.1794871794872, 0.4871794871795, 0.8205128205128], 0.28402366864: [0.8461538461538, 0.1538461538462], 0.22222222222: [0.6666666666667, 0.3333333333333], 0.74556213018: [0.8461538461538, 0.1538461538462], 0.30111768573: [0.5128205128205, 0.1794871794872, 0.4871794871795, 0.8205128205128], 0.46153846154: [0.0], 0.41025641026: [0.0], 0.19460880999: [0.5641025641026, 0.1025641025641, 0.8974358974359, 0.4358974358974], 0.11965811966: [0.6666666666667, 0.3333333333333], 0.81393819855: [0.8205128205128, 0.1794871794872, 0.4871794871795, 0.5128205128205], 0.33530571992: [0.8461538461538, 0.1538461538462], 0.99145299145: [0.3333333333333, 0.6666666666667], 0.84812623274: [0.8461538461538, 0.1538461538462], 0.08809993425: [0.4102564102564, 0.5897435897436, 0.2564102564103, 0.7435897435897], 0.56147271532: [0.2820512820513, 0.9487179487179, 0.7179487179487, 0.0512820512821], 0.83760683761: [0.6666666666667, 0.3333333333333], 0.44181459566: [0.3846153846154, 0.6153846153846], 0.59566074951: [0.3846153846154, 0.6153846153846], 0.04339250493: [0.5384615384615, 0.4615384615385], 0.3865877712: [0.8461538461538, 0.1538461538462], 0.97435897436: [0.0], 0.33136094675: [0.7692307692308, 0.2307692307692], 0.4036817883: [0.5128205128205, 0.1794871794872, 0.4871794871795, 0.8205128205128], 0.66403681788: [0.2820512820513, 0.9487179487179, 0.7179487179487, 0.0512820512821], 0.13017751479: [0.8461538461538, 0.1538461538462], 0.36817882972: [0.2051282051282, 0.1282051282051, 0.7948717948718, 0.8717948717949], 0.43786982249: [0.8461538461538, 0.1538461538462], 0.00920447074: [0.2051282051282, 0.1282051282051, 0.7948717948718, 0.8717948717949], 0.03681788297: [0.4102564102564, 0.2564102564103, 0.5897435897436, 0.7435897435897], 0.45496383958: [0.5128205128205, 0.1794871794872, 0.4871794871795, 0.8205128205128], 0.76660092045: [0.2820512820513, 0.9487179487179, 0.7179487179487, 0.0512820512821], 0.62327416174: [0.6923076923077, 0.3076923076923], 0.93096646943: [0.6923076923077, 0.3076923076923], 0.07100591716: [0.0769230769231, 0.9230769230769], 0.99802761341: [0.7692307692308, 0.2307692307692], 0.12228796844: [0.0769230769231, 0.9230769230769], 0.6942800789: [0.8461538461538, 0.1538461538462], 0.69165023011: [0.025641025641, 0.6410256410256, 0.3589743589744, 0.974358974359], 0.86916502301: [0.2820512820513, 0.9487179487179, 0.7179487179487, 0.0512820512821], 0.18145956608: [0.8461538461538, 0.1538461538462], 0.9033530572: [0.3846153846154, 0.6153846153846], 0.92044707429: [0.2820512820513, 0.9487179487179, 0.7179487179487, 0.0512820512821], 0.19855358317: [0.5128205128205, 0.1794871794872, 0.4871794871795, 0.8205128205128], 0.25378040763: [0.2820512820513, 0.9487179487179, 0.7179487179487, 0.0512820512821], 0.82840236686: [0.6923076923077, 0.3076923076923], 0.61538461539: [0.0], 0.85207100592: [0.3846153846154, 0.6153846153846], 0.28796844182: [0.3846153846154, 0.6153846153846], 0.89677843524: [0.025641025641, 0.6410256410256, 0.3589743589744, 0.974358974359], 0.07626561473: [0.025641025641, 0.6410256410256, 0.3589743589744, 0.974358974359], 0.23274161736: [0.8461538461538, 0.1538461538462], 0.3392504931: [0.3846153846154, 0.6153846153846], 0.24983563445: [0.5128205128205, 0.1794871794872, 0.4871794871795, 0.8205128205128], 0.35634451019: [0.2820512820513, 0.9487179487179, 0.7179487179487, 0.0512820512821], 0.73767258383: [0.0769230769231, 0.9230769230769], 0.9993425378: [0.025641025641, 0.6410256410256, 0.3589743589744, 0.974358974359], 0.79684418146: [0.8461538461538, 0.1538461538462], 0.39053254438: [0.3846153846154, 0.6153846153846], 0.47863247863: [0.6666666666667, 0.3333333333333], 0.40762656147: [0.2820512820513, 0.9487179487179, 0.7179487179487, 0.0512820512821], 0.9677843524: [0.8205128205128, 0.1794871794872, 0.4871794871795, 0.5128205128205], 0.26429980276: [0.6923076923077, 0.3076923076923], 0.28139381986: [0.025641025641, 0.6410256410256, 0.3589743589744, 0.974358974359], 0.02761341223: [0.8461538461538, 0.1538461538462], 0.91650230112: [0.5128205128205, 0.1794871794872, 0.4871794871795, 0.8205128205128], 0.51019066404: [0.2820512820513, 0.9487179487179, 0.7179487179487, 0.0512820512821], 0.45890861276: [0.2820512820513, 0.9487179487179, 0.7179487179487, 0.0512820512821], 0.92307692308: [0.0], 0.07889546351: [0.8461538461538, 0.1538461538462], 0.33267587114: [0.025641025641, 0.6410256410256, 0.3589743589744, 0.974358974359], 0.12623274162: [0.7692307692308, 0.2307692307692], 0.49309664694: [0.3846153846154, 0.6153846153846], 0.78895463511: [0.0769230769231, 0.9230769230769], 0.55621301775: [0.5384615384615, 0.4615384615385], 0.9835634451: [0.2051282051282, 0.1282051282051, 0.7948717948718, 0.8717948717949], 0.36686390533: [0.6923076923077, 0.3076923076923], 0.09598948061: [0.5128205128205, 0.1794871794872, 0.4871794871795, 0.8205128205128], 0.62458908613: [0.2051282051282, 0.1282051282051, 0.7948717948718, 0.8717948717949], 0.65220249836: [0.4102564102564, 0.2564102564103, 0.5897435897436, 0.7435897435897], 0.58908612755: [0.025641025641, 0.6410256410256, 0.3589743589744, 0.974358974359], 0.35239973702: [0.5128205128205, 0.1794871794872, 0.4871794871795, 0.8205128205128], 0.41814595661: [0.6923076923077, 0.3076923076923], 0.96646942801: [0.5384615384615, 0.4615384615385], 0.54963839579: [0.4102564102564, 0.2564102564103, 0.5897435897436, 0.7435897435897], 0.4352399737: [0.025641025641, 0.6410256410256, 0.3589743589744, 0.974358974359], 0.72715318869: [0.2051282051282, 0.1282051282051, 0.7948717948718, 0.8717948717949], 0.1459566075: [0.5384615384615, 0.4615384615385], 0.76134122288: [0.5384615384615, 0.4615384615385], 0.46942800789: [0.6923076923077, 0.3076923076923], 0.04076265615: [0.5641025641026, 0.1025641025641, 0.8974358974359, 0.4358974358974], 0.48652202498: [0.025641025641, 0.6410256410256, 0.3589743589744, 0.974358974359], 0.82971729126: [0.2051282051282, 0.1282051282051, 0.7948717948718, 0.8717948717949], 0.68639053254: [0.0769230769231, 0.9230769230769], 0.16305062459: [0.2051282051282, 0.1282051282051, 0.7948717948718, 0.8717948717949], 0.86390532544: [0.5384615384615, 0.4615384615385], 0.53648915187: [0.7692307692308, 0.2307692307692], 0.75476660092: [0.4102564102564, 0.2564102564103, 0.5897435897436, 0.7435897435897], 0.93228139382: [0.2051282051282, 0.1282051282051, 0.7948717948718, 0.8717948717949], 0.19723865878: [0.5384615384615, 0.4615384615385], 0.39973701512: [0.5641025641026, 0.1025641025641, 0.8974358974359, 0.4358974358974], 0.50230111769: [0.5641025641026, 0.1025641025641, 0.8974358974359, 0.4358974358974], 0.85733070349: [0.4102564102564, 0.2564102564103, 0.5897435897436, 0.7435897435897], 0.13412228797: [0.3846153846154, 0.6153846153846], 0.21433267587: [0.2051282051282, 0.1282051282051, 0.7948717948718, 0.8717948717949], 0.71531886917: [0.2820512820513, 0.9487179487179, 0.7179487179487, 0.0512820512821], 0.76265614727: [0.5128205128205, 0.1794871794872, 0.4871794871795, 0.8205128205128], 0.15121630506: [0.2820512820513, 0.9487179487179, 0.7179487179487, 0.0512820512821], 0.37869822485: [0.0769230769231, 0.9230769230769], 0.63905325444: [0.7692307692308, 0.2307692307692], 0.95989480605: [0.4102564102564, 0.2564102564103, 0.5897435897436, 0.7435897435897], 0.52991452992: [0.6666666666667, 0.3333333333333], 0.24852071006: [0.5384615384615, 0.4615384615385], 0.70742932281: [0.5641025641026, 0.1025641025641, 0.8974358974359, 0.4358974358974], 0.5641025641: [0.0], 0.18540433925: [0.3846153846154, 0.6153846153846], 0.64694280079: [0.3846153846154, 0.6153846153846], 0.63247863248: [0.6666666666667, 0.3333333333333], 0.80999342538: [0.5641025641026, 0.1025641025641, 0.8974358974359, 0.4358974358974], 0.20249835635: [0.2820512820513, 0.9487179487179, 0.7179487179487, 0.0512820512821], 0.66666666667: [0.0], 0.82051282051: [0.0], 0.60486522025: [0.5641025641026, 0.1025641025641, 0.8974358974359, 0.4358974358974], 0.01972386588: [0.0769230769231, 0.9230769230769], 0.2419460881: [0.4102564102564, 0.5897435897436, 0.2564102564103, 0.7435897435897], 0.73504273504: [0.6666666666667, 0.3333333333333], 0.59171597633: [0.8461538461538, 0.1538461538462], 0.91255752794: [0.5641025641026, 0.1025641025641, 0.8974358974359, 0.4358974358974], 0.76923076923: [0.0], 0.23668639053: [0.3846153846154, 0.6153846153846], 0.52071005917: [0.6923076923077, 0.3076923076923], 0.66009204471: [0.5128205128205, 0.1794871794872, 0.4871794871795, 0.8205128205128], 0.11045364892: [0.6923076923077, 0.3076923076923], 0.17357001972: [0.0769230769231, 0.9230769230769], 0.8717948718: [0.0], 0.50493096647: [0.5384615384615, 0.4615384615385], 0.19066403682: [0.4102564102564, 0.2564102564103, 0.5897435897436, 0.7435897435897], 0.94017094017: [0.6666666666667, 0.3333333333333], 0.69822485207: [0.3846153846154, 0.6153846153846], 0.12754766601: [0.025641025641, 0.6410256410256, 0.3589743589744, 0.974358974359], 0.09467455621: [0.5384615384615, 0.4615384615385], 0.54437869823: [0.3846153846154, 0.6153846153846], 0.65614727153: [0.5641025641026, 0.1025641025641, 0.8974358974359, 0.4358974358974], 0.86522024984: [0.5128205128205, 0.1794871794872, 0.4871794871795, 0.8205128205128], 0.04470742932: [0.5128205128205, 0.1794871794872, 0.4871794871795, 0.8205128205128], 0.22485207101: [0.0769230769231, 0.9230769230769], 0.51282051282: [0.0], 0.6127547666: [0.2820512820513, 0.9487179487179, 0.7179487179487, 0.0512820512821], 0.91518737673: [0.5384615384615, 0.4615384615385], 0.1617357002: [0.6923076923077, 0.3076923076923], 0.06048652203: [0.2051282051282, 0.1282051282051, 0.7948717948718, 0.8717948717949], 0.53780407627: [0.025641025641, 0.6410256410256, 0.3589743589744, 0.974358974359], 0.31558185404: [0.6923076923077, 0.3076923076923], 0.17882971729: [0.025641025641, 0.6410256410256, 0.3589743589744, 0.974358974359], 0.57199211045: [0.6923076923077, 0.3076923076923], 0.99408284024: [0.0769230769231, 0.9230769230769], 0.74950690335: [0.3846153846154, 0.6153846153846], 0.14727153189: [0.5128205128205, 0.1794871794872, 0.4871794871795, 0.8205128205128], 0.01709401709: [0.6666666666667, 0.3333333333333], 0.55752794214: [0.5128205128205, 0.1794871794872, 0.4871794871795, 0.8205128205128], 0.81788297173: [0.2820512820513, 0.9487179487179, 0.7179487179487, 0.0512820512821], 0.67455621302: [0.6923076923077, 0.3076923076923], 0.26561472715: [0.2051282051282, 0.1282051282051, 0.7948717948718, 0.8717948717949], 0.00788954635: [0.6923076923077, 0.3076923076923], 0.21301775148: [0.6923076923077, 0.3076923076923], 0.58777120316: [0.7692307692308, 0.2307692307692], 0.74293228139: [0.025641025641, 0.6410256410256, 0.3589743589744, 0.974358974359], 0.07495069034: [0.7692307692308, 0.2307692307692], 0.23011176857: [0.025641025641, 0.6410256410256, 0.3589743589744, 0.974358974359], 0.77712031558: [0.6923076923077, 0.3076923076923], 0.31689677844: [0.2051282051282, 0.1282051282051, 0.7948717948718, 0.8717948717949], 0.5325443787: [0.0769230769231, 0.9230769230769], 0.95463510848: [0.3846153846154, 0.6153846153846], 0.52202498356: [0.2051282051282, 0.1282051282051, 0.7948717948718, 0.8717948717949], 0.84549638396: [0.025641025641, 0.6410256410256, 0.3589743589744, 0.974358974359], 0.35108481262: [0.5384615384615, 0.4615384615385], 0.87968441815: [0.6923076923077, 0.3076923076923], 0.09204470743: [0.5641025641026, 0.1025641025641, 0.8974358974359, 0.4358974358974], 0.64036817883: [0.025641025641, 0.6410256410256, 0.3589743589744, 0.974358974359], 0.84418145957: [0.7692307692308, 0.2307692307692], 0.741617357: [0.7692307692308, 0.2307692307692], 0.80078895464: [0.3846153846154, 0.6153846153846], 0.94806048652: [0.025641025641, 0.6410256410256, 0.3589743589744, 0.974358974359], 0.40236686391: [0.5384615384615, 0.4615384615385], 0.98224852071: [0.6923076923077, 0.3076923076923], 0.419460881: [0.2051282051282, 0.1282051282051, 0.7948717948718, 0.8717948717949], 0.77843523997: [0.2051282051282, 0.1282051282051, 0.7948717948718, 0.8717948717949], 0.27613412229: [0.0769230769231, 0.9230769230769], 0.71794871795: [0.0], 0.29322813938: [0.4102564102564, 0.2564102564103, 0.5897435897436, 0.7435897435897], 0.15384615385: [0.0], 0.45364891519: [0.5384615384615, 0.4615384615385], 0.48915187377: [0.8461538461538, 0.1538461538462], 0.47074293228: [0.2051282051282, 0.1282051282051, 0.7948717948718, 0.8717948717949], 0.32741617357: [0.0769230769231, 0.9230769230769], 0.34451019066: [0.4102564102564, 0.2564102564103, 0.5897435897436, 0.7435897435897], 0.88888888889: [0.6666666666667, 0.3333333333333], 0.79289940828: [0.7692307692308, 0.2307692307692], 0.44707429323: [0.4102564102564, 0.5897435897436, 0.2564102564103, 0.7435897435897], 0.02366863905: [0.7692307692308, 0.2307692307692], 0.39579224195: [0.4102564102564, 0.5897435897436, 0.2564102564103, 0.7435897435897], 0.0315581854: [0.3846153846154, 0.6153846153846], 0.42998027613: [0.0769230769231, 0.9230769230769], 0.50624589086: [0.5128205128205, 0.1794871794872, 0.4871794871795, 0.8205128205128], 0.14332675871: [0.5641025641026, 0.1025641025641, 0.8974358974359, 0.4358974358974], 0.38395792242: [0.025641025641, 0.6410256410256, 0.3589743589744, 0.974358974359], 0.11176857331: [0.2051282051282, 0.1282051282051, 0.7948717948718, 0.8717948717949], 0.60749506903: [0.5384615384615, 0.4615384615385]}
averages_odd={0.392504930966: [0.6923076923077, 0.3076923076923], 0.570019723866: [0.3846153846154, 0.6153846153846], 0.120315581854: [0.5384615384615, 0.4615384615385], 0.40959894806: [0.025641025641, 0.6410256410256, 0.3589743589744, 0.974358974359], 0.168967784352: [0.5641025641026, 0.1025641025641, 0.8974358974359, 0.4358974358974], 0.925049309665: [0.8461538461538, 0.1538461538462], 0.638395792242: [0.2820512820513, 0.9487179487179, 0.7179487179487, 0.0512820512821], 0.443786982249: [0.6923076923077, 0.3076923076923], 0.67258382643: [0.3846153846154, 0.6153846153846], 0.993425378041: [0.5128205128205, 0.1794871794872, 0.4871794871795, 0.8205128205128], 0.460880999343: [0.025641025641, 0.6410256410256, 0.3589743589744, 0.974358974359], 0.563445101907: [0.025641025641, 0.6410256410256, 0.3589743589744, 0.974358974359], 0.20315581854: [0.7692307692308, 0.2307692307692], 0.597633136095: [0.6923076923077, 0.3076923076923], 0.495069033531: [0.6923076923077, 0.3076923076923], 0.775147928994: [0.3846153846154, 0.6153846153846], 0.890861275477: [0.5128205128205, 0.1794871794872, 0.4871794871795, 0.8205128205128], 0.220249835634: [0.5641025641026, 0.1025641025641, 0.8974358974359, 0.4358974358974], 0.074293228139: [0.2820512820513, 0.9487179487179, 0.7179487179487, 0.0512820512821], 0.057199211045: [0.3846153846154, 0.6153846153846], 0.84352399737: [0.2820512820513, 0.9487179487179, 0.7179487179487, 0.0512820512821], 0.700197238659: [0.6923076923077, 0.3076923076923], 0.877712031558: [0.3846153846154, 0.6153846153846], 0.768573307035: [0.025641025641, 0.6410256410256, 0.3589743589744, 0.974358974359], 0.677843523997: [0.4102564102564, 0.5897435897436, 0.2564102564103, 0.7435897435897], 0.946088099934: [0.2820512820513, 0.9487179487179, 0.7179487179487, 0.0512820512821], 0.802761341223: [0.6923076923077, 0.3076923076923], 0.980276134122: [0.3846153846154, 0.6153846153846], 0.897435897436: [0.0], 0.871137409599: [0.025641025641, 0.6410256410256, 0.3589743589744, 0.974358974359], 0.882971729126: [0.4102564102564, 0.5897435897436, 0.2564102564103, 0.7435897435897], 0.128205128205: [0.0], 0.905325443787: [0.6923076923077, 0.3076923076923], 0.108481262327: [0.3846153846154, 0.6153846153846], 0.145299145299: [0.3333333333333, 0.6666666666667], 0.634451019066: [0.5128205128205, 0.1794871794872, 0.4871794871795, 0.8205128205128], 0.076923076923: [0.0], 0.042735042735: [0.3333333333333, 0.6666666666667], 0.179487179487: [0.0], 0.613412228797: [0.7692307692308, 0.2307692307692], 0.531886916502: [0.5128205128205, 0.1794871794872, 0.4871794871795, 0.8205128205128], 0.094017094017: [0.3333333333333, 0.6666666666667], 0.976331360947: [0.8461538461538, 0.1538461538462], 0.196581196581: [0.3333333333333, 0.6666666666667], 0.025641025641: [0.0], 0.630506245891: [0.5641025641026, 0.1025641025641, 0.8974358974359, 0.4358974358974], 0.01775147929: [0.5384615384615, 0.4615384615385], 0.53057199211: [0.5384615384615, 0.4615384615385], 0.230769230769: [0.0], 0.598948060487: [0.2051282051282, 0.1282051282051, 0.7948717948718, 0.8717948717949], 0.247863247863: [0.3333333333333, 0.6666666666667], 0.835634451019: [0.5641025641026, 0.1025641025641, 0.8974358974359, 0.4358974358974], 0.855358316897: [0.2051282051282, 0.1282051282051, 0.7948717948718, 0.8717948717949], 0.633136094675: [0.5384615384615, 0.4615384615385], 0.780407626561: [0.4102564102564, 0.5897435897436, 0.2564102564103, 0.7435897435897], 0.523997370151: [0.4102564102564, 0.5897435897436, 0.2564102564103, 0.7435897435897], 0.096646942801: [0.0769230769231, 0.9230769230769], 0.701512163051: [0.2051282051282, 0.1282051282051, 0.7948717948718, 0.8717948717949], 0.558185404339: [0.0769230769231, 0.9230769230769], 0.735700197239: [0.5384615384615, 0.4615384615385], 0.98553583169: [0.4102564102564, 0.5897435897436, 0.2564102564103, 0.7435897435897], 0.626561472715: [0.4102564102564, 0.5897435897436, 0.2564102564103, 0.7435897435897], 0.740959894806: [0.2820512820513, 0.9487179487179, 0.7179487179487, 0.0512820512821], 0.804076265615: [0.2051282051282, 0.1282051282051, 0.7948717948718, 0.8717948717949], 0.538461538462: [0.0], 0.113740959895: [0.2564102564103, 0.5897435897436, 0.7435897435897, 0.4102564102564], 0.838264299803: [0.5384615384615, 0.4615384615385], 0.155818540434: [0.8461538461538, 0.1538461538462], 0.729125575279: [0.4102564102564, 0.5897435897436, 0.2564102564103, 0.7435897435897], 0.906640368179: [0.2051282051282, 0.1282051282051, 0.7948717948718, 0.8717948717949], 0.763313609467: [0.0769230769231, 0.9230769230769], 0.172912557528: [0.5128205128205, 0.1794871794872, 0.4871794871795, 0.8205128205128], 0.2741617357: [0.5384615384615, 0.4615384615385], 0.940828402367: [0.5384615384615, 0.4615384615385], 0.045364891519: [0.0769230769231, 0.9230769230769], 0.291255752794: [0.2051282051282, 0.1282051282051, 0.7948717948718, 0.8717948717949], 0.831689677844: [0.4102564102564, 0.5897435897436, 0.2564102564103, 0.7435897435897], 0.865877712032: [0.0769230769231, 0.9230769230769], 0.325443786982: [0.5384615384615, 0.4615384615385], 0.579224194609: [0.5641025641026, 0.1025641025641, 0.8974358974359, 0.4358974358974], 0.207100591716: [0.8461538461538, 0.1538461538462], 0.342537804076: [0.2051282051282, 0.1282051282051, 0.7948717948718, 0.8717948717949], 0.934253780408: [0.4102564102564, 0.5897435897436, 0.2564102564103, 0.7435897435897], 0.733070348455: [0.5641025641026, 0.1025641025641, 0.8974358974359, 0.4358974358974], 0.504273504274: [0.3333333333333, 0.6666666666667], 0.22419460881: [0.8205128205128, 0.1794871794872, 0.4871794871795, 0.5128205128205], 0.376725838264: [0.5384615384615, 0.4615384615385], 0.681788297173: [0.5641025641026, 0.1025641025641, 0.8974358974359, 0.4358974358974], 0.019066403682: [0.5128205128205, 0.1794871794872, 0.4871794871795, 0.8205128205128], 0.393819855358: [0.2051282051282, 0.1282051282051, 0.7948717948718, 0.8717948717949], 0.250493096647: [0.0769230769231, 0.9230769230769], 0.794871794872: [0.0], 0.084812623274: [0.6923076923077, 0.3076923076923], 0.606837606838: [0.3333333333333, 0.6666666666667], 0.062458908613: [0.2564102564103, 0.5897435897436, 0.7435897435897, 0.4102564102564], 0.428007889546: [0.5384615384615, 0.4615384615385], 0.641025641026: [0.0], 0.510848126233: [0.7692307692308, 0.2307692307692], 0.44510190664: [0.2051282051282, 0.1282051282051, 0.7948717948718, 0.8717948717949], 0.267587113741: [0.4102564102564, 0.2564102564103, 0.5897435897436, 0.7435897435897], 0.301775147929: [0.0769230769231, 0.9230769230769], 0.666009204471: [0.025641025641, 0.6410256410256, 0.3589743589744, 0.974358974359], 0.709401709402: [0.6666666666667, 0.3333333333333], 0.318869165023: [0.2564102564103, 0.5897435897436, 0.7435897435897, 0.4102564102564], 0.56607495069: [0.8461538461538, 0.1538461538462], 0.479289940828: [0.5384615384615, 0.4615384615385], 0.101906640368: [0.025641025641, 0.6410256410256, 0.3589743589744, 0.974358974359], 0.74358974359: [0.0], 0.496383957922: [0.2051282051282, 0.1282051282051, 0.7948717948718, 0.8717948717949], 0.921104536489: [0.7692307692308, 0.2307692307692], 0.581854043393: [0.5384615384615, 0.4615384615385], 0.353057199211: [0.0769230769231, 0.9230769230769], 0.070348454964: [0.5128205128205, 0.1794871794872, 0.4871794871795, 0.8205128205128], 0.811965811966: [0.3333333333333, 0.6666666666667], 0.370151216305: [0.4102564102564, 0.5897435897436, 0.2564102564103, 0.7435897435897], 0.668639053254: [0.8461538461538, 0.1538461538462], 0.989480604865: [0.5641025641026, 0.1025641025641, 0.8974358974359, 0.4358974358974], 0.846153846154: [0.0], 0.968441814596: [0.0769230769231, 0.9230769230769], 0.404339250493: [0.0769230769231, 0.9230769230769], 0.737015121631: [0.5128205128205, 0.1794871794872, 0.4871794871795, 0.8205128205128], 0.421433267587: [0.2564102564103, 0.5897435897436, 0.7435897435897, 0.4102564102564], 0.771203155819: [0.8461538461538, 0.1538461538462], 0.948717948718: [0.0], 0.518737672584: [0.3846153846154, 0.6153846153846], 0.455621301775: [0.0769230769231, 0.9230769230769], 0.818540433925: [0.7692307692308, 0.2307692307692], 0.472715318869: [0.4102564102564, 0.5897435897436, 0.2564102564103, 0.7435897435897], 0.873767258383: [0.8461538461538, 0.1538461538462], 0.58711374096: [0.2820512820513, 0.9487179487179, 0.7179487179487, 0.0512820512821], 0.104536489152: [0.8461538461538, 0.1538461538462], 0.621301775148: [0.3846153846154, 0.6153846153846], 0.137409598948: [0.2051282051282, 0.1282051282051, 0.7948717948718, 0.8717948717949], 0.942143326759: [0.5128205128205, 0.1794871794872, 0.4871794871795, 0.8205128205128], 0.715976331361: [0.7692307692308, 0.2307692307692], 0.894806048652: [0.2820512820513, 0.9487179487179, 0.7179487179487, 0.0512820512821], 0.512163050625: [0.025641025641, 0.6410256410256, 0.3589743589744, 0.974358974359], 0.689677843524: [0.2820512820513, 0.9487179487179, 0.7179487179487, 0.0512820512821], 0.546351084813: [0.6923076923077, 0.3076923076923], 0.723865877712: [0.3846153846154, 0.6153846153846], 0.254437869822: [0.7692307692308, 0.2307692307692], 0.121630506246: [0.5128205128205, 0.1794871794872, 0.4871794871795, 0.8205128205128], 0.171597633136: [0.5384615384615, 0.4615384615385], 0.614727153189: [0.025641025641, 0.6410256410256, 0.3589743589744, 0.974358974359], 0.271531886917: [0.5641025641026, 0.1025641025641, 0.8974358974359, 0.4358974358974], 0.792241946088: [0.2820512820513, 0.9487179487179, 0.7179487179487, 0.0512820512821], 0.648915187377: [0.6923076923077, 0.3076923076923], 0.826429980276: [0.3846153846154, 0.6153846153846], 0.18869165023: [0.2051282051282, 0.1282051282051, 0.7948717948718, 0.8717948717949], 0.305719921105: [0.7692307692308, 0.2307692307692], 0.92899408284: [0.3846153846154, 0.6153846153846], 0.049309664694: [0.7692307692308, 0.2307692307692], 0.717291255753: [0.025641025641, 0.6410256410256, 0.3589743589744, 0.974358974359], 0.322813938199: [0.5641025641026, 0.1025641025641, 0.8974358974359, 0.4358974358974], 0.125575279421: [0.2820512820513, 0.9487179487179, 0.7179487179487, 0.0512820512821], 0.889546351085: [0.5384615384615, 0.4615384615385], 0.751479289941: [0.6923076923077, 0.3076923076923], 0.886916502301: [0.5641025641026, 0.1025641025641, 0.8974358974359, 0.4358974358974], 0.033530571992: [0.6923076923077, 0.3076923076923], 0.684418145957: [0.5384615384615, 0.4615384615385], 0.357001972387: [0.7692307692308, 0.2307692307692], 0.222879684418: [0.5384615384615, 0.4615384615385], 0.374095989481: [0.5641025641026, 0.1025641025641, 0.8974358974359, 0.4358974358974], 0.997370151216: [0.2820512820513, 0.9487179487179, 0.7179487179487, 0.0512820512821], 0.854043392505: [0.6923076923077, 0.3076923076923], 0.159763313609: [0.3846153846154, 0.6153846153846], 0.239973701512: [0.2051282051282, 0.7948717948718, 0.1282051282051, 0.8717948717949], 0.408284023669: [0.7692307692308, 0.2307692307692], 0.922419460881: [0.025641025641, 0.6410256410256, 0.3589743589744, 0.974358974359], 0.425378040763: [0.5641025641026, 0.1025641025641, 0.8974358974359, 0.4358974358974], 0.176857330703: [0.2820512820513, 0.9487179487179, 0.7179487179487, 0.0512820512821], 0.282051282051: [0.0], 0.956607495069: [0.6923076923077, 0.3076923076923], 0.819855358317: [0.025641025641, 0.6410256410256, 0.3589743589744, 0.974358974359], 0.299145299145: [0.3333333333333, 0.6666666666667], 0.617357001972: [0.8461538461538, 0.1538461538462], 0.459566074951: [0.7692307692308, 0.2307692307692], 0.476660092045: [0.5641025641026, 0.1025641025641, 0.8974358974359, 0.4358974358974], 0.050624589086: [0.025641025641, 0.6410256410256, 0.3589743589744, 0.974358974359], 0.333333333333: [0.0], 0.211045364892: [0.3846153846154, 0.6153846153846], 0.350427350427: [0.3333333333333, 0.6666666666667], 0.034845496384: [0.2051282051282, 0.1282051282051, 0.7948717948718, 0.8717948717949], 0.147928994083: [0.0769230769231, 0.9230769230769], 0.228139381986: [0.2820512820513, 0.9487179487179, 0.7179487179487, 0.0512820512821], 0.384615384615: [0.0], 0.401709401709: [0.3333333333333, 0.6666666666667], 0.165023011177: [0.4102564102564, 0.2564102564103, 0.5897435897436, 0.7435897435897], 0.258382642998: [0.8461538461538, 0.1538461538462], 0.784352399737: [0.5641025641026, 0.1025641025641, 0.8974358974359, 0.4358974358974], 0.275476660092: [0.8205128205128, 0.1794871794872, 0.4871794871795, 0.5128205128205], 0.435897435897: [0.0], 0.452991452991: [0.3333333333333, 0.6666666666667], 0.30966469428: [0.8461538461538, 0.1538461538462], 0.547666009204: [0.2051282051282, 0.1282051282051, 0.7948717948718, 0.8717948717949], 0.199211045365: [0.0769230769231, 0.9230769230769], 0.326758711374: [0.5128205128205, 0.1794871794872, 0.4871794871795, 0.8205128205128], 0.487179487179: [0.0], 0.786982248521: [0.5384615384615, 0.4615384615385], 0.136094674556: [0.6923076923077, 0.3076923076923], 0.216305062459: [0.2564102564103, 0.5897435897436, 0.7435897435897, 0.4102564102564], 0.360946745562: [0.8461538461538, 0.1538461538462], 0.650230111769: [0.2051282051282, 0.1282051282051, 0.7948717948718, 0.8717948717949], 0.506903353057: [0.0769230769231, 0.9230769230769], 0.378040762656: [0.5128205128205, 0.1794871794872, 0.4871794871795, 0.8205128205128], 0.15318869165: [0.025641025641, 0.6410256410256, 0.3589743589744, 0.974358974359], 0.575279421433: [0.4102564102564, 0.5897435897436, 0.2564102564103, 0.7435897435897], 0.015121630506: [0.5641025641026, 0.1025641025641, 0.8974358974359, 0.4358974358974], 0.412228796844: [0.8461538461538, 0.1538461538462], 0.752794214333: [0.2051282051282, 0.1282051282051, 0.7948717948718, 0.8717948717949], 0.609467455621: [0.0769230769231, 0.9230769230769], 0.429322813938: [0.5128205128205, 0.1794871794872, 0.4871794871795, 0.8205128205128], 0.011176857331: [0.2564102564103, 0.5897435897436, 0.7435897435897, 0.4102564102564], 0.660749506903: [0.0769230769231, 0.9230769230769], 0.187376725838: [0.6923076923077, 0.3076923076923], 0.463510848126: [0.8461538461538, 0.1538461538462], 0.712031558185: [0.0769230769231, 0.9230769230769], 0.48060486522: [0.5128205128205, 0.1794871794872, 0.4871794871795, 0.8205128205128], 0.204470742932: [0.025641025641, 0.6410256410256, 0.3589743589744, 0.974358974359], 0.066403681788: [0.5641025641026, 0.1025641025641, 0.8974358974359, 0.4358974358974], 0.05325443787: [0.8461538461538, 0.1538461538462], 0.957922419461: [0.2051282051282, 0.1282051282051, 0.7948717948718, 0.8717948717949], 0.81459566075: [0.0769230769231, 0.9230769230769], 0.527942143327: [0.5641025641026, 0.1025641025641, 0.8974358974359, 0.4358974358974], 0.992110453649: [0.5384615384615, 0.4615384615385], 0.562130177515: [0.7692307692308, 0.2307692307692], 0.23865877712: [0.6923076923077, 0.3076923076923], 0.262327416174: [0.3846153846154, 0.6153846153846], 0.917159763314: [0.0769230769231, 0.9230769230769], 0.279421433268: [0.2820512820513, 0.9487179487179, 0.7179487179487, 0.0512820512821], 0.91452991453: [0.6666666666667, 0.3333333333333], 0.023011176857: [0.2820512820513, 0.9487179487179, 0.7179487179487, 0.0512820512821], 0.664694280079: [0.7692307692308, 0.2307692307692], 0.973701512163: [0.025641025641, 0.6410256410256, 0.3589743589744, 0.974358974359], 0.313609467456: [0.3846153846154, 0.6153846153846], 0.555555555556: [0.6666666666667, 0.3333333333333], 0.100591715976: [0.7692307692308, 0.2307692307692], 0.33070348455: [0.2820512820513, 0.9487179487179, 0.7179487179487, 0.0512820512821], 0.589743589744: [0.0], 0.767258382643: [0.7692307692308, 0.2307692307692], 0.069033530572: [0.5384615384615, 0.4615384615385], 0.364891518738: [0.3846153846154, 0.6153846153846], 0.65811965812: [0.3333333333333, 0.6666666666667], 0.514792899408: [0.8461538461538, 0.1538461538462], 0.381985535832: [0.2820512820513, 0.9487179487179, 0.7179487179487, 0.0512820512821], 0.692307692308: [0.0], 0.11768573307: [0.5641025641026, 0.1025641025641, 0.8974358974359, 0.4358974358974], 0.869822485207: [0.7692307692308, 0.2307692307692], 0.583168967784: [0.5128205128205, 0.1794871794872, 0.4871794871795, 0.8205128205128], 0.255752794214: [0.025641025641, 0.6410256410256, 0.3589743589744, 0.974358974359], 0.41617357002: [0.3846153846154, 0.6153846153846], 0.760683760684: [0.6666666666667, 0.3333333333333], 0.086127547666: [0.2051282051282, 0.1282051282051, 0.7948717948718, 0.8717948717949], 0.965811965812: [0.6666666666667, 0.3333333333333], 0.938198553583: [0.5641025641026, 0.1025641025641, 0.8974358974359, 0.4358974358974], 0.433267587114: [0.2820512820513, 0.9487179487179, 0.7179487179487, 0.0512820512821], 0.289940828402: [0.6923076923077, 0.3076923076923], 0.972386587771: [0.7692307692308, 0.2307692307692], 0.005917159763: [0.3846153846154, 0.6153846153846], 0.685733070348: [0.5128205128205, 0.1794871794872, 0.4871794871795, 0.8205128205128], 0.307034845496: [0.025641025641, 0.6410256410256, 0.3589743589744, 0.974358974359], 0.467455621302: [0.3846153846154, 0.6153846153846], 0.863247863248: [0.6666666666667, 0.3333333333333], 0.719921104536: [0.8461538461538, 0.1538461538462], 0.001972386588: [0.8461538461538, 0.1538461538462], 0.484549638396: [0.2820512820513, 0.9487179487179, 0.7179487179487, 0.0512820512821], 0.341222879684: [0.6923076923077, 0.3076923076923], 0.788297172913: [0.5128205128205, 0.1794871794872, 0.4871794871795, 0.8205128205128], 0.358316896778: [0.025641025641, 0.6410256410256, 0.3589743589744, 0.974358974359], 0.839579224195: [0.5128205128205, 0.1794871794872, 0.4871794871795, 0.8205128205128], 0.822485207101: [0.8461538461538, 0.1538461538462], 0.151873767258: [0.7692307692308, 0.2307692307692], 0.535831689678: [0.2820512820513, 0.9487179487179, 0.7179487179487, 0.0512820512821]}
|
class Solution:
def findRepeatNumber(self, nums: List[int]) -> int:
s = set()
for _ in nums:
if _ not in s:
s.add(_)
else:
return _
|
def dfs(vertex):
global reachable_vertex
global visited_vertex
if visited_vertex[vertex] is True:
return
visited_vertex[vertex] = True
reachable_vertex.append(vertex)
for i in range(0, vertex_num):
if adjacent_matrix[vertex][i] is True:
dfs(i)
vertex_num = int(input())
edge_num = int(input())
adjacent_matrix = [[False for x in range(0, vertex_num)] for y in range(0, vertex_num)]
visited_vertex = [False for x in range(0, vertex_num)]
for i in range(0, edge_num):
s, d = map(lambda x: (int(x) - 1), input().split())
adjacent_matrix[s][d] = True
adjacent_matrix[d][s] = True
reachable_vertex = list()
dfs(0)
print(len(reachable_vertex) - 1)
|
# 14.2.5 Python Implementation
class Graph:
"""Representation of a simple graph using an adjacency map."""
#------------------------- nested Vertex class -------------------------
class Vertex:
"""Lightweight vertex structure for a graph."""
__slots__ = '_element'
def __init__(self,x):
"""Do not call constructor directly.
Use Graph's insert_vertex(x).
"""
self._element = x
def element(self):
"""Return element associated with this vertex."""
return self._element
def __hash__(self): # will allow vertex to be a map/set key
return hash(id(self))
#------------------------- nested Edge class -------------------------
class Edge:
"""Lightweight edge structure for a graph."""
__slots__ = '_origin','_destination','_element'
def __init__(self,u,v,x):
"""Do not call constructor directly.
Use Graph's insert_edge(u,v,x).
"""
self._origin = u
self._destination = v
self._element = x
def endpoints(self):
"""Return (u,v) tuple for vertices u and v."""
return (self._origin,self._destination)
def opposite(self,v):
"""Return the vertex that is opposite v on this edge."""
return self._destination if v is self._origin else self._origin
def element(self):
"""Return element associated with this edge."""
return self._element
def __hash__(self): # will allow edge to be a map/set key
return hash((self._origin,self._destination))
#------------------------- Graph class -------------------------
def __init__(self,directed=False):
"""Create an empty graph (undirected, by default).
Graph is directed if optional parameter is set to True.
"""
self._outgoing = {}
# only create second map for directed graph; use alias for undirected
self._incoming = {} if directed else self._outgoing
def is_directed(self):
"""Return True if this is a directed graph; False if undirected.
Property is based on the original declaration of the graph, not its
contents.
"""
return self._incoming is not self._outgoing
# directed if maps are distinct
def vertex_count(self):
"""Return the number of vertices in the graph."""
return len(self._outgoing)
def vertices(self):
"""Return an iteration of all vertices of the graph."""
return self._outgoing.keys()
def edge_count(self):
"""Return the number of edges in the graph."""
total = sum(len(self._outgoing[v]) for v in self._outgoing)
# for undirected graphs, make sure not to double-count edges
return total if self.is_directed() else total // 2
def edges(self):
"""Return a set of all edges of the graph."""
result = set() # avoid double-reporting edges of undirected graph
for secondary_map in self._outgoing.values():
result.update(secondary_map.values()) # add edges to resulting set
return result
def get_edge(self,u,v):
"""Return the edge from u to v, or None if not adjacent."""
return self._outgoing[u].get(v)
def degree(self,v,outgoing=True):
"""Return number of (outgoing) edges incident to vertex v in the graph.
If graph is directed, optional parameter used to count incoming edges.
"""
adj = self._outgoing if outgoing else self._incoming
return len(adj[v])
def incident_edges(self,v,outgoing=True):
"""Return all (outgoing) edges incedent to vertex v in the graph.
If graph is directed, optional parameter used to request incoming edges.
"""
adj = self._outgoing if outgoing else self._incoming
for edge in adj[v].values():
yield edge
def insert_vertex(self,x=None):
"""Insert and return a new Vertex with element x."""
v = self.Vertex(x)
self._outgoing[v] = {}
if self.is_directed():
self._incoming[v] = {} # need distinct map for incoming edges
return v
def insert_edge(self,u,v,x=None):
"""Insert and return a new Edge from u to v with auxiliary element x."""
e = self.Edge(u, v, x)
self._outgoing[u][v] = e
self._incoming[v][u] = e
#------------------------------ my main function ------------------------------
G = Graph()
'''Let us generate the graph in this section! '''
u = G.insert_vertex('vertex: u')
v = G.insert_vertex('vertex: v')
w = G.insert_vertex('vertex: w')
z = G.insert_vertex('vertex: z')
e = G.insert_edge(u,v,'edge: e')
f = G.insert_edge(v,w,'edge: f')
g = G.insert_edge(u,w,'edge: g')
h = G.insert_edge(w,z,'edge: h')
i = G.insert_edge(u,z,'edge: LiuPeng :)')
# Let us test out graph G
Gi = G.vertices()
Gii = iter(Gi)
print(Gii.__next__()._element)
print(u._element)
print(Gii.__next__()._element)
print(v._element)
print(Gii.__next__()._element)
print(w._element)
print(Gii.__next__()._element)
print(z._element)
print('')
VertexList = list(G._outgoing.keys())
for i in VertexList:
VertexAdj = list(G.incident_edges(i))
guard = True
for j in range(len(VertexAdj)):
if(guard):
sign = i._element
else:
sign = 'o------->'
print(sign,VertexAdj[j].opposite(i)._element,\
G.get_edge(i,VertexAdj[j].opposite(i))._element)
guard = False
print('')
|
N, K=map(int, input().split())
arr=[]
result=0
for i in range(N):
arr.append(int(input()))
for i in range(N-1, -1, -1):
if K==0:
break
else:
result+=K//arr[i]
K=K%arr[i]
print(result)
|
'''
Crie um programa que leia números inteiros pelo teclado. O programa só vai parar quando o usuário digitar o valor 999, que é a condição de parada. No final, mostre quantos números foram digitados e qual foi a soma entre elas (desconsiderando o flag).
'''
# Iniciar as variaveis
n = s = 0
contador = 0
# Laço while para pedir somar e ver quantos numeros tem
while True:
n = int(input('Digite um numero: '))
if n == 999:
# Quebra do laço while, quando se digita 999
break
s += n
contador += 1
# Usando f string para formatar o print
print(f'A soma vale {s}.')
print(f'Foram digitados {contador}', end='')
print(' números.' if contador > 1 else ' número.')
|
"""
413. Reverse Integer
https://www.lintcode.com/problem/reverse-integer/description?_from=ladder&&fromId=37
"""
class Solution:
"""
@param n: the integer to be reversed
@return: the reversed integer
"""
def reverseInteger(self, n):
# write your code here
a = str(abs(n))
sign = n > 0
res = int(a[::-1])
if n > 0 and res <= 1<<31 - 1:
return res
if n < 0 and -res >= -1<<31:
return -res
return 0
|
class Token:
"""Token representation class"""
def __init__(self, token_type, lexeme, literal, line):
self.type = token_type
self.lexeme = lexeme
self.literal = literal
self.line = line
def __str__(self):
if self.lexeme:
return self.lexeme
else:
return self.type.name
|
myl1 = [12,10,38,22]
myl1.sort(reverse = True)
print(myl1)
myl1.sort(reverse = False)
print(myl1)
|
"""Bundles all exceptions and warnings used in the package prodsim"""
class InvalidValue(Exception):
""" Raises when a value is not within the permissible range """
pass
class InvalidType(Exception):
""" Raises when a value has the wrong type """
pass
class MissingParameter(Exception):
""" Raised when a required parameter is missing """
pass
class MissingAttribute(Exception):
""" Raises when a not defined attribute is used """
pass
class NotSupportedParameter(Exception):
""" Raised when a not defined parameter is passed """
pass
class FileNotFound(Exception):
""" Raised when a file couldn't be found """
pass
class InvalidFormat(Exception):
""" Raises when a parameter has the wrong format """
class UndefinedFunction(Exception):
""" Raises when a function isn't defined """
pass
class UndefinedObject(Exception):
""" Raises if an referenced object is not defined """
pass
class InvalidFunction(Exception):
""" Raises when a function is not valid """
pass
class InvalidYield(Exception):
""" Raises when a generator function doesn't yield the correct types """
class InvalidSignature(Exception):
""" Raises when a signature """
class ToManyArguments(Exception):
""" Raises, when to many arguments are passed """
pass
class MissingData(Exception):
""" Raises, when required data is missing """
pass
class BlockedIdentifier(Exception):
""" Raises, when an identifier is already blocked """
pass
class InfiniteLoop(Exception):
""" Raises, when a function contains an infinite loop """
class BadType(Warning):
""" when a parameter has a bad type """
pass
class BadSignature(Warning):
""" when a argument has not the expected name """
pass
class BadYield(Warning):
""" when a yield is possible but can lead to problems """
pass
class NotDefined(Warning):
""" when a non pre defined identifier is used """
pass
|
# coding=utf-8
"""
二叉树的最小深度
给定一个二叉树,找出其最小深度。
二叉树的最小深度为根节点到最近叶子节点的最短路径上的节点数量。
思路:
有这几种情况
1.有左右树的
2.只有左树的
3.只有右树的
4.无树的
针对 1 找到min就行了
针对2,3,4找到max就行了
"""
"""
Definition of TreeNode:
class TreeNode:
def __init__(self, val):
self.val = val
self.left, self.right = None, None
"""
class Solution:
"""
@param root: The root of binary tree
@return: An integer
"""
def minDepth(self, root):
# write your code here
if not root:
return 0
deep_left = self.minDepth(root.left)
deep_right = self.minDepth(root.right)
if deep_left and deep_right:
return min(deep_left, deep_right) + 1
else:
return max(deep_left, deep_right) + 1
|
def minSwap(arr, n, k) :
# Find count of elements
# which are less than
# equals to k
count = 0
for i in range(0, n) :
if (arr[i] <= k) :
count = count + 1
# Find unwanted elements
# in current window of
# size 'count'
bad = 0
for i in range(0, count) :
if (arr[i] > k) :
bad = bad + 1
# Initialize answer with
# 'bad' value of current
# window
ans = bad
j = count
for i in range(0, n) :
if(j == n) :
break
# Decrement count of
# previous window
if (arr[i] > k) :
bad = bad - 1
# Increment count of
# current window
if (arr[j] > k) :
bad = bad + 1
# Update ans if count
# of 'bad' is less in
# current window
ans = min(ans, bad)
j = j + 1
return ans
# Driver code
arr = [2, 1, 5, 6, 3]
n = len(arr)
k = 3
print (minSwap(arr, n, k))
|
'''veiculos = ['carro'] #lista
print(veiculos)#mostra'''
'''alunos = ['João', 22, '13/07/1997'] #lista
print(len(alunos)) #mostra quantidade
print(alunos [0], "\n", alunos [1], "\n", alunos [2]) #mostra informações da lista usando a posição'''
#maisfunçaodalista
'''nome = input("Digite seu nome: ")
idade = input("Digite sua idade: ")
dataNascimento = input('Digite sua data de nascimento: ')'''
'''usuario = [nome, idade, dataNascimento] #lista das respostas na lista
usuario = [nome, idade, dataNascimento]
print(usuario)
del(usuario[1])#deleta da lista a posiçao 1
usuario.pop(1)#exclui da lista a posiçao 1
usuario.remove(0) #remove da lista a posiçao 0
usuario.clear() #limpa a lista
print(usuario)'''
#maisfunçaodalista
'''alfabeto = ['a', 'd', 'c', 'b']
alfabeto.sort()
print(alfabeto)'''
'''lista.count(2))#o comando 'count' serve para contador o numero de vezes o valor que ta na lista aparece.'''
|
#!/usr/bin/python
# -*- coding: utf-8 -*-
"""CatSystem 2 PE executable information
WARNING: This module is deprecated, and will be changed or removed,
once it's made obsolete.
"""
__version__ = '0.0.1'
__date__ = '2020-01-01'
__author__ = 'Robert Jordan'
#######################################################################################
|
class CSVWriter:
"""Class that represents the structure of a CSV file writer
Author: Luis Marques
"""
def __init__(self, filename: str, header: tuple, file_type: str = "w"):
"""Creates an instance of a CSV file writer
Args:
filename (str): string to define the name of the file.
header (tuple): tuple of strings to be written as the header of the file.
"""
self.file = open(filename, file_type)
self.write_line(header)
def write_at_once(self, content: list):
"""Writes a list of string's list at once in the file
Args:
content (list): list of string's list
"""
for element in content:
self.write_line(element)
def write_line(self, content: tuple):
"""Writes a tuple of strings as a line in the file
Args:
content (tuple): tuple of strings to be written into the file.
"""
self.file.write(content[0])
for index in range(len(content) - 1):
self.file.write(",")
self.file.write(content[index + 1])
self.file.write("\n")
def close(self):
"""Closes the file"""
self.file.close()
|
class Product:
def __init__(self, name="", price=0.0, discountPercent=0):
self.name = name
self.price = price
self.discountPercent = discountPercent
def getDiscountAmount(self):
return self.price * self.discountPercent / 100
def getDiscountPrice(self):
return self.price - self.getDiscountAmount()
def getDescription(self):
return self.name
class Media(Product):
def __init__(self, name="", price=0.0, discountPercent=0, format=""):
self.format = format
Product.__init__(self, name, price, discountPercent)
# def getDiscription(self):
# return Product.getDescription(self)
class Book(Media):
def __init__(self, name="", price=0.0, discountPercent=0, author="", format="Hardcover"):
self.author = author
Media.__init__(self, name, price, discountPercent, format)
# Book("The Big Short", 15.95, 34, "Michael Lewis", "Ebook")) # ,
def getDescription(self):
return Media.getDescription(self) + " by " + self.author
class Album(Media):
def __init__(self, name="", price=0.0, discountPercent=0, author="", format="cassette"):
Media.__init__(self, name, price, discountPercent, format)
self.author = author
def getDescription(self):
return Media.getDescription(self) + " by " + self.author
class Movie(Media):
def __init__(self, name="", price=0.0, discountPercent=0, year=0, format="DVD"):
Media.__init__(self, name, price, discountPercent, format)
self.year = year
def getDescription(self):
return Media.getDescription(self) + " (" + str(self.year) + ")"
|
# Definition for singly-linked list.
# class ListNode:
# def __init__(self, val=0, next=None):
# self.val = val
# self.next = next
class Solution:
def isPalindrome(self, head: ListNode) -> bool:
slow, fast = head, head
tot = 0
while fast and fast.next:
fast = fast.next.next
slow = slow.next
# check odd or even
if not fast: # even
mid = slow
else: # odd
mid = slow.next
# reverse starting from mid
mid = self.reveserLL(mid)
# compare palindromeLL
p1 = head
p2 = mid
while p1 and p2:
if p1.val != p2.val:
return False
p1 = p1.next
p2 = p2.next
return True
def reveserLL(self, head: ListNode) -> ListNode:
newNext = None
curr = head
while curr:
prev = curr.next
curr.next = newNext
newNext = curr
curr = prev
return newNext
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.