content
stringlengths
7
1.05M
fixed_cases
stringlengths
1
1.28M
# # 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
batch_size = 8 img_height = 512 img_width = 1024 display_height = 512 display_width = 1024 nb_classes = 34 learning_rate = 0.0001 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
class Solution: def find_max_consecutive_ones(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
''' 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 '''
""" 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 '\nPyAlgo\nDevansh Singh, 2021\n'
""" 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)
""" 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"\n pattern = "a"\n 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)
def add_tuple(t1, t2): return [t1i + t2i for (t1i, t2i) in zip(t1, t2)] def compare_tuple(t1, t2): return all([t1i <= t2i for (t1i, t2i) in zip(t1, t2)]) def the_hackathon(n, m, a, b, f, s, t): 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 merge_groups(g1, g2): if g1 != g2: group1 = groups[g1] group2 = groups[g2] added_tuples = add_tuple(group1[1], group2[1]) if len(group1[0]) + len(group2[0]) <= b and compare_tuple(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() merge_groups(people[r1], people[r2]) maxlen = a names_to_print = [] for group in groups.values(): glen = len(group[0]) if glen > maxlen: maxlen = glen names_to_print = group[0] elif glen == maxlen: names_to_print += 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]) the_hackathon(n, m, a, b, f, s, t)
# 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)
def merge_sort(arr): if len(arr) > 1: mid = len(arr) // 2 l = arr[:mid] r = arr[mid:] merge_sort(L) merge_sort(R) i = j = k = 0 while i < len(L) and j < len(R): if L[i] < R[j]: arr[k] = L[i] i += 1 else: arr[k] = R[j] j += 1 k += 1 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) merge_sort(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)
matrix = [[0, 1, 2, 3, 4], [5, 6, 7, 8, 9]] x = matrix[0][0] x = matrix[0][0:2] matrix[0][0] = -1 matrix[0].remove(-1) x = len(matrix)
# 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'")
print("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))
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
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 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" } } } }""")
test_json = [] test_json.append('{"log":[\n{"user_responses":[\n {"description":"test autologging 2\n"},\n]},\n{"autogeneratated":[ {"status":""},\n {"files":[\n {"name":"./sample/interface_deck_2D_decomp/head/interface_deck_2D_decomp.cc","size":79168,"last_modified":1528904996},\n {"name":"./sample/interface_deck_2D_decomp/407/v407_interface_deck_2D_decomp.cc","size":80015,"last_modified":1528904996},\n {"name":"./utilities/gtest-vpic.cc","size":500,"last_modified":1528904996},\n {"name":"./utilities/restart_remap.cc","size":1796,"last_modified":1528904996},\n {"name":"./deck/main.cc","size":3001,"last_modified":1528904996},\n {"name":"./deck/wrapper.cc","size":25863,"last_modified":1528904996},\n {"name":"./src/material/material.cc","size":2825,"last_modified":1530129259},\n {"name":"./src/util/profile/profile.cc","size":1773,"last_modified":1530129259},\n {"name":"./src/util/checkpt/checkpt.cc","size":22150,"last_modified":1530129259},\n {"name":"./src/util/checkpt/checkpt_io.cc","size":680,"last_modified":1528904996},\n {"name":"./src/util/boot.cc","size":1167,"last_modified":1530129259},\n {"name":"./src/util/util_base.cc","size":6923,"last_modified":1530129259},\n {"name":"./src/util/rng/test/rng.cc","size":13287,"last_modified":1528904996},\n {"name":"./src/util/rng/frandn_table.cc","size":7759,"last_modified":1530129259},\n {"name":"./src/util/rng/rng.cc","size":17713,"last_modified":1530129259},\n {"name":"./src/util/rng/drandn_table.cc","size":30219,"last_modified":1530129259},\n {"name":"./src/util/rng/rng_pool.cc","size":1475,"last_modified":1530129259},\n {"name":"./src/util/mp/mp.cc","size":2494,"last_modified":1528904996},\n {"name":"./src/util/v4/test/v4.cc","size":11628,"last_modified":1528904996},\n {"name":"./src/util/pipelines/pipelines_thread.cc","size":19730,"last_modified":1530129259},\n {"name":"./src/util/pipelines/pipelines_serial.cc","size":2100,"last_modified":1530129259},\n {"name":"./src/vpic/advance.cc","size":8824,"last_modified":1531415602},\n {"name":"./src/vpic/diagnostics.cc","size":2261,"last_modified":1528904996},\n {"name":"./src/vpic/vpic.cc","size":3605,"last_modified":1528904996},\n {"name":"./src/vpic/misc.cc","size":10026,"last_modified":1528904996},\n {"name":"./src/vpic/initialize.cc","size":3000,"last_modified":1530129259},\n {"name":"./src/vpic/dump.cc","size":27661,"last_modified":1528904996},\n {"name":"./src/field_advance/standard/vacuum_energy_f.cc","size":4800,"last_modified":1530129259},\n {"name":"./src/field_advance/standard/compute_rms_div_b_err.cc","size":1977,"last_modified":1530129259},\n {"name":"./src/field_advance/standard/advance_b.cc","size":5314,"last_modified":1531415601},\n {"name":"./src/field_advance/standard/sfa.cc","size":7263,"last_modified":1531415601},\n {"name":"./src/field_advance/standard/vacuum_compute_curl_b.cc","size":9562,"last_modified":1528904996},\n {"name":"./src/field_advance/standard/vacuum_advance_e.cc","size":11198,"last_modified":1528904996},\n {"name":"./src/field_advance/standard/compute_rhob.cc","size":4404,"last_modified":1530129259},\n {"name":"./src/field_advance/standard/advance_e.cc","size":12678,"last_modified":1531259114},\n {"name":"./src/field_advance/standard/energy_f.cc","size":4575,"last_modified":1530129259},\n {"name":"./src/field_advance/standard/vacuum_compute_div_e_err.cc","size":4598,"last_modified":1530129259},\n {"name":"./src/field_advance/standard/SFACopier.cc","size":5709,"last_modified":1531173834},\n {"name":"./src/field_advance/standard/clean_div_e.cc","size":4207,"last_modified":1530129259},\n {"name":"./src/field_advance/standard/remote.cc","size":23843,"last_modified":1531259114},\n {"name":"./src/field_advance/standard/compute_div_b_err.cc","size":4871,"last_modified":1528904996},\n {"name":"./src/field_advance/standard/clean_div_b.cc","size":7907,"last_modified":1528904996},\n {"name":"./src/field_advance/standard/vacuum_clean_div_e.cc","size":4037,"last_modified":1530129259},\n {"name":"./src/field_advance/standard/compute_rms_div_e_err.cc","size":4791,"last_modified":1530129259},\n {"name":"./src/field_advance/standard/vacuum_compute_rhob.cc","size":4439,"last_modified":1530129259},\n {"name":"./src/field_advance/standard/compute_div_e_err.cc","size":4521,"last_modified":1530129259},\n {"name":"./src/field_advance/standard/compute_curl_b.cc","size":10347,"last_modified":1528904996},\n {"name":"./src/field_advance/standard/local.cc","size":21223,"last_modified":1531415601},\n {"name":"./src/field_advance/field_advance.cc","size":2089,"last_modified":1531259111},\n {"name":"./src/species_advance/standard/energy_p.cc","size":4421,"last_modified":1528904996},\n {"name":"./src/species_advance/standard/sort_p.cc","size":9721,"last_modified":1530129259},\n {"name":"./src/species_advance/standard/rho_p.cc","size":7133,"last_modified":1528904996},\n {"name":"./src/species_advance/standard/advance_p.cc","size":17585,"last_modified":1528904996},\n {"name":"./src/species_advance/standard/uncenter_p.cc","size":5982,"last_modified":1528904996},\n {"name":"./src/species_advance/standard/move_p.cc","size":14414,"last_modified":1528904996},\n {"name":"./src/species_advance/standard/center_p.cc","size":5891,"last_modified":1528904996},\n {"name":"./src/species_advance/standard/hydro_p.cc","size":6464,"last_modified":1530129259},\n {"name":"./src/species_advance/species_advance.cc","size":3637,"last_modified":1530129259},\n {"name":"./src/grid/partition.cc","size":6164,"last_modified":1530129259},\n {"name":"./src/grid/ops.cc","size":7031,"last_modified":1530129259},\n {"name":"./src/grid/grid_comm.cc","size":1810,"last_modified":1530129259},\n {"name":"./src/grid/grid_structors.cc","size":1183,"last_modified":1530129259},\n {"name":"./src/boundary/link.cc","size":2404,"last_modified":1530129259},\n {"name":"./src/boundary/absorb_tally.cc","size":2630,"last_modified":1530129259},\n {"name":"./src/boundary/maxwellian_reflux.cc","size":8642,"last_modified":1530129259},\n {"name":"./src/boundary/boundary_p.cc","size":16088,"last_modified":1528904996},\n {"name":"./src/boundary/boundary.cc","size":2281,"last_modified":1530129259},\n {"name":"./src/collision/collision.cc","size":2100,"last_modified":1530129259},\n {"name":"./src/collision/unary.cc","size":5158,"last_modified":1530129259},\n {"name":"./src/collision/langevin.cc","size":4740,"last_modified":1530129259},\n {"name":"./src/collision/binary.cc","size":9583,"last_modified":1530129259},\n {"name":"./src/collision/hard_sphere.cc","size":17874,"last_modified":1530129259},\n {"name":"./src/collision/large_angle_coulomb.cc","size":11081,"last_modified":1530129259},\n {"name":"./src/emitter/emitter.cc","size":2366,"last_modified":1530129259},\n {"name":"./src/emitter/child_langmuir.cc","size":8682,"last_modified":1530129259},\n {"name":"./src/sf_interface/reduce_accumulators.cc","size":6310,"last_modified":1528904996},\n {"name":"./src/sf_interface/clear_accumulators.cc","size":1161,"last_modified":1530129259},\n {"name":"./src/sf_interface/accumulator_array.cc","size":1680,"last_modified":1530129259},\n {"name":"./src/sf_interface/hydro_array.cc","size":7869,"last_modified":1530129259},\n {"name":"./src/sf_interface/interpolator_array.cc","size":10078,"last_modified":1528904996},\n {"name":"./src/sf_interface/unload_accumulator.cc","size":3507,"last_modified":1528904996},\n {"name":"./kokkos/tpls/gtest/gtest/gtest-all.cc","size":354477,"last_modified":1528906780},\n {"name":"./interfaces/c/fft_join.c","size":3309,"last_modified":1528904996},\n {"name":"./interfaces/c/fft_join_tmp.c","size":3446,"last_modified":1528904996},\n {"name":"./interfaces/c/poynting2d.c","size":6280,"last_modified":1528904996},\n {"name":"./interfaces/c/data_join2.c","size":22638,"last_modified":1528904996},\n {"name":"./interfaces/c/fig10.c","size":4852,"last_modified":1528904996},\n {"name":"./interfaces/c/data_join.c","size":22633,"last_modified":1528904996},\n {"name":"./interfaces/c/pppp.c","size":11254,"last_modified":1528904996},\n {"name":"./interfaces/c/movie_join_bak.c","size":7266,"last_modified":1528904996},\n {"name":"./interfaces/c/fig9.c","size":4900,"last_modified":1528904996},\n {"name":"./interfaces/c/movie_join_2d.c","size":7170,"last_modified":1528904996},\n {"name":"./interfaces/c/movie_join.c","size":16856,"last_modified":1528904996},\n {"name":"./build/CMakeFiles/FindOpenMP/OpenMPCheckVersion.c","size":605,"last_modified":1531158566},\n {"name":"./build/CMakeFiles/FindOpenMP/OpenMPTryFlag.c","size":93,"last_modified":1531158565},\n {"name":"./build/CMakeFiles/3.11.1/CompilerIdC/CMakeCCompilerId.c","size":18988,"last_modified":1531158556},\n {"name":"./build/CMakeFiles/feature_tests.c","size":688,"last_modified":1531158558},\n {"name":"./utilities/symbols.h","size":1274,"last_modified":1528904996},\n {"name":"./src/material/material.h","size":1438,"last_modified":1528904996},\n {"name":"./src/util/bitfield.h","size":2961,"last_modified":1528904996},\n {"name":"./src/util/swap.h","size":4340,"last_modified":1528904996},\n {"name":"./src/util/system.h","size":1880,"last_modified":1528904996},\n {"name":"./src/util/io/P2PIOPolicy.h","size":13536,"last_modified":1528904996},\n {"name":"./src/util/io/FileIOData.h","size":402,"last_modified":1528904996},\n {"name":"./src/util/io/FileIO.h","size":1855,"last_modified":1528904996},\n {"name":"./src/util/io/StandardUtilsPolicy.h","size":577,"last_modified":1528904996},\n {"name":"./src/util/io/P2PUtilsPolicy.h","size":1218,"last_modified":1528904996},\n {"name":"./src/util/io/FileUtils.h","size":778,"last_modified":1528904996},\n {"name":"./src/util/io/StandardIOPolicy.h","size":3305,"last_modified":1528904996},\n {"name":"./src/util/profile/profile.h","size":3083,"last_modified":1528904996},\n {"name":"./src/util/util_base.h","size":14693,"last_modified":1528904996},\n {"name":"./src/util/checkpt/checkpt.h","size":13238,"last_modified":1528904996},\n {"name":"./src/util/checkpt/checkpt_io.h","size":1709,"last_modified":1528904996},\n {"name":"./src/util/checkpt/checkpt_private.h","size":628,"last_modified":1528904996},\n {"name":"./src/util/util.h","size":1060,"last_modified":1528904996},\n {"name":"./src/util/rng/rng.h","size":9313,"last_modified":1528904996},\n {"name":"./src/util/rng/frandn_table.h","size":312,"last_modified":1528904996},\n {"name":"./src/util/rng/rng_private.h","size":11345,"last_modified":1528904996},\n {"name":"./src/util/rng/drandn_table.h","size":320,"last_modified":1528904996},\n {"name":"./src/util/mp/RelayPolicy.h","size":12301,"last_modified":1528904996},\n {"name":"./src/util/mp/mp.h","size":3441,"last_modified":1528904996},\n {"name":"./src/util/mp/DMPPolicy.h","size":10437,"last_modified":1528904996},\n {"name":"./src/util/mp/MPWrapper.h","size":540,"last_modified":1528904996},\n {"name":"./src/util/v4/v4_sse.h","size":33491,"last_modified":1528904996},\n {"name":"./src/util/v4/v4_portable.h","size":33860,"last_modified":1528904996},\n {"name":"./src/util/v4/v4_altivec.h","size":42173,"last_modified":1528904996},\n {"name":"./src/util/v4/v4.h","size":343,"last_modified":1528904996},\n {"name":"./src/util/checksum.h","size":1125,"last_modified":1528904996},\n {"name":"./src/util/pipelines/pipelines.h","size":3872,"last_modified":1528904996},\n {"name":"./src/vpic/dumpmacros.h","size":8876,"last_modified":1528904996},\n {"name":"./src/vpic/vpic_unit_deck.h","size":457,"last_modified":1528904996},\n {"name":"./src/vpic/kokkos_helpers.h","size":4833,"last_modified":1531415602},\n {"name":"./src/vpic/vpic.h","size":22550,"last_modified":1529966965},\n {"name":"./src/field_advance/standard/sfa_private.h","size":14239,"last_modified":1531415602},\n {"name":"./src/field_advance/field_advance_private.h","size":545,"last_modified":1531166380},\n {"name":"./src/field_advance/field_advance.h","size":10219,"last_modified":1531259114},\n {"name":"./src/species_advance/standard/spa_private.h","size":5627,"last_modified":1528904996},\n {"name":"./src/species_advance/species_advance.h","size":7654,"last_modified":1531415602},\n {"name":"./src/grid/grid.h","size":14277,"last_modified":1528904996},\n {"name":"./src/boundary/boundary.h","size":1516,"last_modified":1528904996},\n {"name":"./src/boundary/boundary_private.h","size":2437,"last_modified":1528904996},\n {"name":"./src/collision/collision_private.h","size":1469,"last_modified":1528904996},\n {"name":"./src/collision/collision.h","size":12961,"last_modified":1528904996},\n {"name":"./src/emitter/emitter_private.h","size":1115,"last_modified":1528904996},\n {"name":"./src/emitter/emitter.h","size":2906,"last_modified":1528904996},\n {"name":"./src/sf_interface/sf_interface.h","size":5787,"last_modified":1528904996},\n {"name":"./src/sf_interface/sf_interface_private.h","size":2480,"last_modified":1528904996},\n {"name":"./kokkos/example/md_skeleton/system.h","size":2718,"last_modified":1528906780},\n {"name":"./kokkos/example/md_skeleton/types.h","size":5086,"last_modified":1528906780},\n {"name":"./kokkos/core/unit_test/config/results/HSW_Qthreads_KokkosCore_config.h","size":630,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Pascal61_ROCm_KokkosCore_config.h","size":571,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Kepler35_ROCm_KokkosCore_config.h","size":571,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Maxwell53_Qthreads_KokkosCore_config.h","size":544,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/ARMv81_Pthread_KokkosCore_config.h","size":572,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/BDW_OpenMP_KokkosCore_config.h","size":682,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/WSM_Serial_KokkosCore_config.h","size":629,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Pascal61_Serial_KokkosCore_config.h","size":542,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/SKX_OpenMP_KokkosCore_config.h","size":688,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/SKX_Cuda_KokkosCore_config.h","size":715,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Kepler37_Serial_KokkosCore_config.h","size":542,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/ARMv80_Qthreads_KokkosCore_config.h","size":573,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Power9_OpenMP_KokkosCore_config.h","size":633,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Maxwell53_Pthread_KokkosCore_config.h","size":543,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/ARMv81_OpenMP_KokkosCore_config.h","size":571,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/AMDAVX_ROCm_KokkosCore_config.h","size":597,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Kepler35_OpenMP_KokkosCore_config.h","size":542,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Maxwell50_Qthreads_KokkosCore_config.h","size":544,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Pascal60_Pthread_KokkosCore_config.h","size":543,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Kepler30_ROCm_KokkosCore_config.h","size":571,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Power7_OpenMP_KokkosCore_config.h","size":633,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Maxwell50_Serial_KokkosCore_config.h","size":542,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Power9_Qthreads_KokkosCore_config.h","size":635,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/KNC_Cuda_KokkosCore_config.h","size":651,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/BGQ_ROCm_KokkosCore_config.h","size":571,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/BDW_Qthreads_KokkosCore_config.h","size":684,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/AMDAVX_Qthreads_KokkosCore_config.h","size":570,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Power8_Qthreads_KokkosCore_config.h","size":635,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Maxwell53_Cuda_KokkosCore_config.h","size":631,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Kepler30_Serial_KokkosCore_config.h","size":542,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/KNC_ROCm_KokkosCore_config.h","size":653,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/SKX_Pthread_KokkosCore_config.h","size":689,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/AMDAVX_Cuda_KokkosCore_config.h","size":595,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/ARMv80_ROCm_KokkosCore_config.h","size":600,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/BGQ_Qthreads_KokkosCore_config.h","size":544,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Maxwell_Cuda_KokkosCore_config.h","size":631,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/ARMv80_Pthread_KokkosCore_config.h","size":572,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/BDW_ROCm_KokkosCore_config.h","size":711,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Kepler_OpenMP_KokkosCore_config.h","size":542,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Kepler37_Qthreads_KokkosCore_config.h","size":544,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Kepler30_Qthreads_KokkosCore_config.h","size":544,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Kepler_ROCm_KokkosCore_config.h","size":571,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Maxwell_Serial_KokkosCore_config.h","size":542,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Maxwell52_ROCm_KokkosCore_config.h","size":571,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/BDW_Serial_KokkosCore_config.h","size":682,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Pascal60_ROCm_KokkosCore_config.h","size":571,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Kepler_Cuda_KokkosCore_config.h","size":629,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/WSM_Cuda_KokkosCore_config.h","size":656,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/AMDAVX_Serial_KokkosCore_config.h","size":568,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/None_Serial_KokkosCore_config.h","size":542,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Pascal60_OpenMP_KokkosCore_config.h","size":542,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Maxwell52_Serial_KokkosCore_config.h","size":542,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/HSW_Pthread_KokkosCore_config.h","size":629,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Power9_ROCm_KokkosCore_config.h","size":662,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/KNC_Pthread_KokkosCore_config.h","size":625,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/ARMv8-ThunderX_Pthread_KokkosCore_config.h","size":609,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/KNC_OpenMP_KokkosCore_config.h","size":624,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Maxwell_ROCm_KokkosCore_config.h","size":571,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Maxwell52_Pthread_KokkosCore_config.h","size":543,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/KNL_Pthread_KokkosCore_config.h","size":634,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Pascal60_Serial_KokkosCore_config.h","size":542,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Power7_Serial_KokkosCore_config.h","size":633,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Maxwell53_OpenMP_KokkosCore_config.h","size":542,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Kepler37_OpenMP_KokkosCore_config.h","size":542,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Power7_ROCm_KokkosCore_config.h","size":662,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Power7_Pthread_KokkosCore_config.h","size":634,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/None_Qthreads_KokkosCore_config.h","size":544,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/SNB_Serial_KokkosCore_config.h","size":627,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Maxwell52_OpenMP_KokkosCore_config.h","size":542,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Power7_Qthreads_KokkosCore_config.h","size":635,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/WSM_OpenMP_KokkosCore_config.h","size":629,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/ARMv80_Serial_KokkosCore_config.h","size":571,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Power8_Serial_KokkosCore_config.h","size":633,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/ARMv81_ROCm_KokkosCore_config.h","size":600,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/ARMv81_Qthreads_KokkosCore_config.h","size":573,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/KNC_Qthreads_KokkosCore_config.h","size":626,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/SKX_Serial_KokkosCore_config.h","size":688,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/HSW_Serial_KokkosCore_config.h","size":628,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Maxwell50_Pthread_KokkosCore_config.h","size":543,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Pascal61_Pthread_KokkosCore_config.h","size":543,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Power8_Pthread_KokkosCore_config.h","size":634,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/None_Cuda_KokkosCore_config.h","size":569,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Maxwell52_Cuda_KokkosCore_config.h","size":631,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/SKX_Qthreads_KokkosCore_config.h","size":690,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Pascal61_OpenMP_KokkosCore_config.h","size":542,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Kepler35_Cuda_KokkosCore_config.h","size":629,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Pascal60_Cuda_KokkosCore_config.h","size":629,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/HSW_Cuda_KokkosCore_config.h","size":655,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/SKX_ROCm_KokkosCore_config.h","size":717,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/SNB_Pthread_KokkosCore_config.h","size":628,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Kepler_Pthread_KokkosCore_config.h","size":543,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/AMDAVX_OpenMP_KokkosCore_config.h","size":568,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Pascal60_Qthreads_KokkosCore_config.h","size":544,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Maxwell50_Cuda_KokkosCore_config.h","size":631,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/AMDAVX_Pthread_KokkosCore_config.h","size":569,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/WSM_ROCm_KokkosCore_config.h","size":658,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Maxwell_OpenMP_KokkosCore_config.h","size":542,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/BGQ_Serial_KokkosCore_config.h","size":542,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Kepler_Serial_KokkosCore_config.h","size":542,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/BGQ_Pthread_KokkosCore_config.h","size":543,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Kepler32_Pthread_KokkosCore_config.h","size":543,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Maxwell53_ROCm_KokkosCore_config.h","size":571,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Power9_Serial_KokkosCore_config.h","size":633,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Maxwell_Qthreads_KokkosCore_config.h","size":544,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/ARMv8-ThunderX_Serial_KokkosCore_config.h","size":608,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/ARMv80_Cuda_KokkosCore_config.h","size":598,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/BDW_Pthread_KokkosCore_config.h","size":683,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/ARMv8-ThunderX_ROCm_KokkosCore_config.h","size":637,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Kepler35_Qthreads_KokkosCore_config.h","size":544,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Maxwell_Pthread_KokkosCore_config.h","size":543,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Kepler37_Pthread_KokkosCore_config.h","size":543,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Kepler30_Cuda_KokkosCore_config.h","size":629,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Kepler32_Cuda_KokkosCore_config.h","size":629,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Kepler32_OpenMP_KokkosCore_config.h","size":542,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/BDW_Cuda_KokkosCore_config.h","size":709,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Kepler35_Serial_KokkosCore_config.h","size":542,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/ARMv8-ThunderX_Cuda_KokkosCore_config.h","size":635,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Kepler30_Pthread_KokkosCore_config.h","size":543,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Kepler37_ROCm_KokkosCore_config.h","size":571,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Power8_ROCm_KokkosCore_config.h","size":662,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/WSM_Pthread_KokkosCore_config.h","size":630,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/ARMv81_Cuda_KokkosCore_config.h","size":598,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/SNB_Qthreads_KokkosCore_config.h","size":629,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/ARMv8-ThunderX_Qthreads_KokkosCore_config.h","size":610,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/SNB_OpenMP_KokkosCore_config.h","size":627,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Kepler37_Cuda_KokkosCore_config.h","size":629,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/SNB_ROCm_KokkosCore_config.h","size":656,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/BGQ_OpenMP_KokkosCore_config.h","size":542,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Kepler35_Pthread_KokkosCore_config.h","size":543,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/ARMv80_OpenMP_KokkosCore_config.h","size":571,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Maxwell50_ROCm_KokkosCore_config.h","size":571,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/None_OpenMP_KokkosCore_config.h","size":542,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Power8_OpenMP_KokkosCore_config.h","size":633,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Pascal61_Qthreads_KokkosCore_config.h","size":544,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Maxwell52_Qthreads_KokkosCore_config.h","size":544,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/SNB_Cuda_KokkosCore_config.h","size":654,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/KNL_Qthreads_KokkosCore_config.h","size":635,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/KNL_ROCm_KokkosCore_config.h","size":662,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Power9_Pthread_KokkosCore_config.h","size":634,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/None_Pthread_KokkosCore_config.h","size":543,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Kepler32_ROCm_KokkosCore_config.h","size":571,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Maxwell53_Serial_KokkosCore_config.h","size":542,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/KNL_Cuda_KokkosCore_config.h","size":660,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Maxwell50_OpenMP_KokkosCore_config.h","size":542,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/None_ROCm_KokkosCore_config.h","size":571,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Power7_Cuda_KokkosCore_config.h","size":660,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/ARMv81_Serial_KokkosCore_config.h","size":571,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/KNL_OpenMP_KokkosCore_config.h","size":633,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Kepler32_Qthreads_KokkosCore_config.h","size":544,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/HSW_OpenMP_KokkosCore_config.h","size":628,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Kepler_Qthreads_KokkosCore_config.h","size":544,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/KNC_Serial_KokkosCore_config.h","size":624,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/ARMv8-ThunderX_OpenMP_KokkosCore_config.h","size":608,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Pascal61_Cuda_KokkosCore_config.h","size":629,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Kepler32_Serial_KokkosCore_config.h","size":542,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/WSM_Qthreads_KokkosCore_config.h","size":631,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Power8_Cuda_KokkosCore_config.h","size":660,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Kepler30_OpenMP_KokkosCore_config.h","size":542,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/HSW_ROCm_KokkosCore_config.h","size":657,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/KNL_Serial_KokkosCore_config.h","size":633,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Power9_Cuda_KokkosCore_config.h","size":660,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/BGQ_Cuda_KokkosCore_config.h","size":569,"last_modified":1528906778},\n {"name":"./kokkos/tpls/gtest/gtest/gtest.h","size":830614,"last_modified":1528906780},\n {"name":"./build/kokkos/KokkosCore_config.h","size":634,"last_modified":1531158567},\n {"name":"./kokkos/example/cmake_build/foo.f","size":108,"last_modified":1528906780}\n ]},\n {"git_info":[\n {"commit_hash":"24e948133901e1e158d7485d9035fea131c4e2f2"},\n {"branch":"test"}\n ]}\n]}\n]}') test_json.append('{"user_responses":\n {"description":"Threadsafe advance_b\n"},\n {"time_categories":\n {"planning":\n {"time_spent":1.000000}, {"difficulty":6}\n },\n {"coding":\n {"time_spent":4.000000}, {"difficulty":5}\n },\n {"refactoring":\n {"time_spent":0.000000}, {"difficulty":0}\n },\n {"debugging":\n {"time_spent":2.000000}, {"difficulty":5}\n },\n {"optimising":\n {"time_spent":0.000000}, {"difficulty":0}\n }\n } {"tags":\n {"MPI":false},\n {"OpenMP":false},\n {"Cuda":false},\n {"Kokkos":true},\n {"domain specific work":false}\n },\n {"NASA-TLX":\n {"mental_demand":5}, {"temporal_demand":5}, {"performance":4}, {"effort":6}, {"frustration":6} }}\n{"status":""}{"files":\n{"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}\n}\n{"git_info":\n {"commit_hash":031aab735138641fb73467e47484ed31cce3bfa0},\n {"branch":sharrell}\n}') test_json.append('{"log":{\n"user_responses":{\n "description":"test",\n "time_categories":{\n "planning":{\n "time_spent":3.000000,\n "difficulty":6\n },\n "coding":{\n "time_spent":3.000000,\n "difficulty":7\n },\n "refactoring":{\n "time_spent":5.000000,\n "difficulty":4\n },\n "debugging":{\n "time_spent":7.000000,\n "difficulty":6\n },\n "optimising":{\n "time_spent":4.000000,\n "difficulty":6\n }\n },\n "tags":{\n "MPI":false,\n "OpenMP":true,\n "Cuda":false,\n "Kokkos":true,\n "domain specific work":false\n },\n "NASA-TLX":{\n "mental_demand":5,\n "temporal_demand":7,\n "performance":4,\n "effort":7,\n "frustration":5\n }\n},\n"autogeneratated":{\n "status":"",\n "files":[\n {"name":"./sample/interface_deck_2D_decomp/head/interface_deck_2D_decomp.cc","size":79168,"last_modified":1528904996},\n {"name":"./sample/interface_deck_2D_decomp/407/v407_interface_deck_2D_decomp.cc","size":80015,"last_modified":1528904996},\n {"name":"./utilities/gtest-vpic.cc","size":500,"last_modified":1528904996},\n {"name":"./utilities/restart_remap.cc","size":1796,"last_modified":1528904996},\n {"name":"./deck/main.cc","size":3001,"last_modified":1528904996},\n {"name":"./deck/wrapper.cc","size":25863,"last_modified":1528904996},\n {"name":"./src/material/material.cc","size":2825,"last_modified":1531500079},\n {"name":"./src/util/profile/profile.cc","size":1773,"last_modified":1531500079},\n {"name":"./src/util/checkpt/checkpt.cc","size":22150,"last_modified":1531500079},\n {"name":"./src/util/checkpt/checkpt_io.cc","size":680,"last_modified":1531500079},\n {"name":"./src/util/boot.cc","size":1167,"last_modified":1531500079},\n {"name":"./src/util/util_base.cc","size":6923,"last_modified":1531500080},\n {"name":"./src/util/rng/test/rng.cc","size":13287,"last_modified":1531500080},\n {"name":"./src/util/rng/frandn_table.cc","size":7759,"last_modified":1531500080},\n {"name":"./src/util/rng/rng.cc","size":17713,"last_modified":1531500080},\n {"name":"./src/util/rng/drandn_table.cc","size":30219,"last_modified":1531500080},\n {"name":"./src/util/rng/rng_pool.cc","size":1475,"last_modified":1531500080},\n {"name":"./src/util/mp/mp.cc","size":2494,"last_modified":1531500080},\n {"name":"./src/util/v4/test/v4.cc","size":11628,"last_modified":1531500080},\n {"name":"./src/util/pipelines/pipelines_thread.cc","size":19730,"last_modified":1531500080},\n {"name":"./src/util/pipelines/pipelines_serial.cc","size":2100,"last_modified":1531500080},\n {"name":"./src/vpic/advance.cc","size":8824,"last_modified":1532015937},\n {"name":"./src/vpic/diagnostics.cc","size":2261,"last_modified":1531500080},\n {"name":"./src/vpic/vpic.cc","size":3605,"last_modified":1531500080},\n {"name":"./src/vpic/misc.cc","size":10026,"last_modified":1531500080},\n {"name":"./src/vpic/initialize.cc","size":3000,"last_modified":1532015937},\n {"name":"./src/vpic/dump.cc","size":27661,"last_modified":1531500080},\n {"name":"./src/field_advance/standard/vacuum_energy_f.cc","size":4800,"last_modified":1531500080},\n {"name":"./src/field_advance/standard/compute_rms_div_b_err.cc","size":1977,"last_modified":1531500080},\n {"name":"./src/field_advance/standard/advance_b.cc","size":5314,"last_modified":1532015936},\n {"name":"./src/field_advance/standard/sfa.cc","size":7263,"last_modified":1532015936},\n {"name":"./src/field_advance/standard/vacuum_compute_curl_b.cc","size":9562,"last_modified":1531500080},\n {"name":"./src/field_advance/standard/vacuum_advance_e.cc","size":11198,"last_modified":1531500080},\n {"name":"./src/field_advance/standard/compute_rhob.cc","size":4404,"last_modified":1531500080},\n {"name":"./src/field_advance/standard/advance_e.cc","size":12678,"last_modified":1531856219},\n {"name":"./src/field_advance/standard/energy_f.cc","size":4575,"last_modified":1531500080},\n {"name":"./src/field_advance/standard/vacuum_compute_div_e_err.cc","size":4598,"last_modified":1531500080},\n {"name":"./src/field_advance/standard/clean_div_e.cc","size":4207,"last_modified":1531500080},\n {"name":"./src/field_advance/standard/remote.cc","size":23843,"last_modified":1531509851},\n {"name":"./src/field_advance/standard/compute_div_b_err.cc","size":4871,"last_modified":1531500080},\n {"name":"./src/field_advance/standard/clean_div_b.cc","size":7907,"last_modified":1531500080},\n {"name":"./src/field_advance/standard/vacuum_clean_div_e.cc","size":4037,"last_modified":1531500080},\n {"name":"./src/field_advance/standard/compute_rms_div_e_err.cc","size":4791,"last_modified":1531500080},\n {"name":"./src/field_advance/standard/vacuum_compute_rhob.cc","size":4439,"last_modified":1531500080},\n {"name":"./src/field_advance/standard/compute_div_e_err.cc","size":4521,"last_modified":1531500080},\n {"name":"./src/field_advance/standard/compute_curl_b.cc","size":10347,"last_modified":1531500080},\n {"name":"./src/field_advance/standard/local.cc","size":21223,"last_modified":1532015936},\n {"name":"./src/field_advance/field_advance.cc","size":2089,"last_modified":1531500080},\n {"name":"./src/species_advance/standard/energy_p.cc","size":4421,"last_modified":1531500080},\n {"name":"./src/species_advance/standard/sort_p.cc","size":9721,"last_modified":1531500080},\n {"name":"./src/species_advance/standard/rho_p.cc","size":7133,"last_modified":1531500080},\n {"name":"./src/species_advance/standard/advance_p.cc","size":17585,"last_modified":1531500080},\n {"name":"./src/species_advance/standard/uncenter_p.cc","size":5982,"last_modified":1532015937},\n {"name":"./src/species_advance/standard/move_p.cc","size":14414,"last_modified":1531500080},\n {"name":"./src/species_advance/standard/center_p.cc","size":5891,"last_modified":1531500080},\n {"name":"./src/species_advance/standard/hydro_p.cc","size":6464,"last_modified":1531500080},\n {"name":"./src/species_advance/species_advance.cc","size":3637,"last_modified":1532015936},\n {"name":"./src/grid/partition.cc","size":6164,"last_modified":1531500080},\n {"name":"./src/grid/ops.cc","size":7031,"last_modified":1531500080},\n {"name":"./src/grid/grid_comm.cc","size":1810,"last_modified":1531500080},\n {"name":"./src/grid/grid_structors.cc","size":1183,"last_modified":1531500080},\n {"name":"./src/boundary/link.cc","size":2404,"last_modified":1531500080},\n {"name":"./src/boundary/absorb_tally.cc","size":2630,"last_modified":1531500080},\n {"name":"./src/boundary/maxwellian_reflux.cc","size":8642,"last_modified":1531500080},\n {"name":"./src/boundary/boundary_p.cc","size":16088,"last_modified":1532015936},\n {"name":"./src/boundary/boundary.cc","size":2281,"last_modified":1531500080},\n {"name":"./src/collision/collision.cc","size":2100,"last_modified":1531500080},\n {"name":"./src/collision/unary.cc","size":5158,"last_modified":1531500080},\n {"name":"./src/collision/langevin.cc","size":4740,"last_modified":1531500080},\n {"name":"./src/collision/binary.cc","size":9583,"last_modified":1531500080},\n {"name":"./src/collision/hard_sphere.cc","size":17874,"last_modified":1531500080},\n {"name":"./src/collision/large_angle_coulomb.cc","size":11081,"last_modified":1531500080},\n {"name":"./src/emitter/emitter.cc","size":2366,"last_modified":1531500080},\n {"name":"./src/emitter/child_langmuir.cc","size":8682,"last_modified":1531500080},\n {"name":"./src/sf_interface/reduce_accumulators.cc","size":6310,"last_modified":1531500081},\n {"name":"./src/sf_interface/clear_accumulators.cc","size":1161,"last_modified":1531500081},\n {"name":"./src/sf_interface/accumulator_array.cc","size":1680,"last_modified":1531500081},\n {"name":"./src/sf_interface/hydro_array.cc","size":7869,"last_modified":1531500081},\n {"name":"./src/sf_interface/interpolator_array.cc","size":10078,"last_modified":1532015936},\n {"name":"./src/sf_interface/unload_accumulator.cc","size":3507,"last_modified":1531500081},\n {"name":"./kokkos/tpls/gtest/gtest/gtest-all.cc","size":354477,"last_modified":1528906780},\n {"name":"./interfaces/c/fft_join.c","size":3309,"last_modified":1528904996},\n {"name":"./interfaces/c/fft_join_tmp.c","size":3446,"last_modified":1528904996},\n {"name":"./interfaces/c/poynting2d.c","size":6280,"last_modified":1528904996},\n {"name":"./interfaces/c/data_join2.c","size":22638,"last_modified":1528904996},\n {"name":"./interfaces/c/fig10.c","size":4852,"last_modified":1528904996},\n {"name":"./interfaces/c/data_join.c","size":22633,"last_modified":1528904996},\n {"name":"./interfaces/c/pppp.c","size":11254,"last_modified":1528904996},\n {"name":"./interfaces/c/movie_join_bak.c","size":7266,"last_modified":1528904996},\n {"name":"./interfaces/c/fig9.c","size":4900,"last_modified":1528904996},\n {"name":"./interfaces/c/movie_join_2d.c","size":7170,"last_modified":1528904996},\n {"name":"./interfaces/c/movie_join.c","size":16856,"last_modified":1528904996},\n {"name":"./build/CMakeFiles/FindOpenMP/OpenMPCheckVersion.c","size":605,"last_modified":1531841816},\n {"name":"./build/CMakeFiles/FindOpenMP/OpenMPTryFlag.c","size":93,"last_modified":1531841815},\n {"name":"./build/CMakeFiles/3.11.1/CompilerIdC/CMakeCCompilerId.c","size":18988,"last_modified":1531841805},\n {"name":"./build/CMakeFiles/feature_tests.c","size":688,"last_modified":1531841808},\n {"name":"./utilities/symbols.h","size":1274,"last_modified":1528904996},\n {"name":"./src/material/material.h","size":1438,"last_modified":1531500079},\n {"name":"./src/util/bitfield.h","size":2961,"last_modified":1531500079},\n {"name":"./src/util/swap.h","size":4340,"last_modified":1531500079},\n {"name":"./src/util/system.h","size":1880,"last_modified":1531500079},\n {"name":"./src/util/io/P2PIOPolicy.h","size":13536,"last_modified":1531500079},\n {"name":"./src/util/io/FileIOData.h","size":402,"last_modified":1531500079},\n {"name":"./src/util/io/FileIO.h","size":1855,"last_modified":1531500079},\n {"name":"./src/util/io/StandardUtilsPolicy.h","size":577,"last_modified":1531500079},\n {"name":"./src/util/io/P2PUtilsPolicy.h","size":1218,"last_modified":1531500079},\n {"name":"./src/util/io/FileUtils.h","size":778,"last_modified":1531500079},\n {"name":"./src/util/io/StandardIOPolicy.h","size":3305,"last_modified":1531500079},\n {"name":"./src/util/profile/profile.h","size":3083,"last_modified":1531500079},\n {"name":"./src/util/util_base.h","size":14693,"last_modified":1531500079},\n {"name":"./src/util/checkpt/checkpt.h","size":13238,"last_modified":1531500079},\n {"name":"./src/util/checkpt/checkpt_io.h","size":1709,"last_modified":1531500079},\n {"name":"./src/util/checkpt/checkpt_private.h","size":628,"last_modified":1531500079},\n {"name":"./src/util/util.h","size":1060,"last_modified":1531500079},\n {"name":"./src/util/rng/rng.h","size":9313,"last_modified":1531500080},\n {"name":"./src/util/rng/frandn_table.h","size":312,"last_modified":1531500080},\n {"name":"./src/util/rng/rng_private.h","size":11345,"last_modified":1531500080},\n {"name":"./src/util/rng/drandn_table.h","size":320,"last_modified":1531500080},\n {"name":"./src/util/mp/RelayPolicy.h","size":12301,"last_modified":1531500080},\n {"name":"./src/util/mp/mp.h","size":3441,"last_modified":1531500080},\n {"name":"./src/util/mp/DMPPolicy.h","size":10437,"last_modified":1531500080},\n {"name":"./src/util/mp/MPWrapper.h","size":540,"last_modified":1531500080},\n {"name":"./src/util/v4/v4_sse.h","size":33491,"last_modified":1531500080},\n {"name":"./src/util/v4/v4_portable.h","size":33860,"last_modified":1531500080},\n {"name":"./src/util/v4/v4_altivec.h","size":42173,"last_modified":1531500080},\n {"name":"./src/util/v4/v4.h","size":343,"last_modified":1531500080},\n {"name":"./src/util/checksum.h","size":1125,"last_modified":1531500080},\n {"name":"./src/util/pipelines/pipelines.h","size":3872,"last_modified":1531500080},\n {"name":"./src/vpic/dumpmacros.h","size":8876,"last_modified":1531500080},\n {"name":"./src/vpic/vpic_unit_deck.h","size":457,"last_modified":1531500080},\n {"name":"./src/vpic/kokkos_helpers.h","size":4833,"last_modified":1532015937},\n {"name":"./src/vpic/vpic.h","size":22550,"last_modified":1531500080},\n {"name":"./src/field_advance/standard/sfa_private.h","size":14239,"last_modified":1532015936},\n {"name":"./src/field_advance/field_advance_private.h","size":545,"last_modified":1531500080},\n {"name":"./src/field_advance/field_advance.h","size":10219,"last_modified":1532015936},\n {"name":"./src/species_advance/standard/spa_private.h","size":5627,"last_modified":1531500080},\n {"name":"./src/species_advance/species_advance.h","size":7654,"last_modified":1532015936},\n {"name":"./src/grid/grid.h","size":14277,"last_modified":1531500080},\n {"name":"./src/boundary/boundary.h","size":1516,"last_modified":1531500080},\n {"name":"./src/boundary/boundary_private.h","size":2437,"last_modified":1531500080},\n {"name":"./src/collision/collision_private.h","size":1469,"last_modified":1531500080},\n {"name":"./src/collision/collision.h","size":12961,"last_modified":1531500080},\n {"name":"./src/emitter/emitter_private.h","size":1115,"last_modified":1531500080},\n {"name":"./src/emitter/emitter.h","size":2906,"last_modified":1531500080},\n {"name":"./src/sf_interface/sf_interface.h","size":5787,"last_modified":1532015936},\n {"name":"./src/sf_interface/sf_interface_private.h","size":2480,"last_modified":1531500081},\n {"name":"./kokkos/example/md_skeleton/system.h","size":2718,"last_modified":1528906780},\n {"name":"./kokkos/example/md_skeleton/types.h","size":5086,"last_modified":1528906780},\n {"name":"./kokkos/core/unit_test/config/results/HSW_Qthreads_KokkosCore_config.h","size":630,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Pascal61_ROCm_KokkosCore_config.h","size":571,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Kepler35_ROCm_KokkosCore_config.h","size":571,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Maxwell53_Qthreads_KokkosCore_config.h","size":544,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/ARMv81_Pthread_KokkosCore_config.h","size":572,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/BDW_OpenMP_KokkosCore_config.h","size":682,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/WSM_Serial_KokkosCore_config.h","size":629,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Pascal61_Serial_KokkosCore_config.h","size":542,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/SKX_OpenMP_KokkosCore_config.h","size":688,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/SKX_Cuda_KokkosCore_config.h","size":715,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Kepler37_Serial_KokkosCore_config.h","size":542,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/ARMv80_Qthreads_KokkosCore_config.h","size":573,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Power9_OpenMP_KokkosCore_config.h","size":633,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Maxwell53_Pthread_KokkosCore_config.h","size":543,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/ARMv81_OpenMP_KokkosCore_config.h","size":571,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/AMDAVX_ROCm_KokkosCore_config.h","size":597,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Kepler35_OpenMP_KokkosCore_config.h","size":542,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Maxwell50_Qthreads_KokkosCore_config.h","size":544,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Pascal60_Pthread_KokkosCore_config.h","size":543,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Kepler30_ROCm_KokkosCore_config.h","size":571,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Power7_OpenMP_KokkosCore_config.h","size":633,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Maxwell50_Serial_KokkosCore_config.h","size":542,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Power9_Qthreads_KokkosCore_config.h","size":635,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/KNC_Cuda_KokkosCore_config.h","size":651,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/BGQ_ROCm_KokkosCore_config.h","size":571,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/BDW_Qthreads_KokkosCore_config.h","size":684,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/AMDAVX_Qthreads_KokkosCore_config.h","size":570,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Power8_Qthreads_KokkosCore_config.h","size":635,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Maxwell53_Cuda_KokkosCore_config.h","size":631,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Kepler30_Serial_KokkosCore_config.h","size":542,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/KNC_ROCm_KokkosCore_config.h","size":653,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/SKX_Pthread_KokkosCore_config.h","size":689,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/AMDAVX_Cuda_KokkosCore_config.h","size":595,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/ARMv80_ROCm_KokkosCore_config.h","size":600,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/BGQ_Qthreads_KokkosCore_config.h","size":544,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Maxwell_Cuda_KokkosCore_config.h","size":631,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/ARMv80_Pthread_KokkosCore_config.h","size":572,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/BDW_ROCm_KokkosCore_config.h","size":711,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Kepler_OpenMP_KokkosCore_config.h","size":542,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Kepler37_Qthreads_KokkosCore_config.h","size":544,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Kepler30_Qthreads_KokkosCore_config.h","size":544,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Kepler_ROCm_KokkosCore_config.h","size":571,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Maxwell_Serial_KokkosCore_config.h","size":542,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Maxwell52_ROCm_KokkosCore_config.h","size":571,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/BDW_Serial_KokkosCore_config.h","size":682,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Pascal60_ROCm_KokkosCore_config.h","size":571,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Kepler_Cuda_KokkosCore_config.h","size":629,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/WSM_Cuda_KokkosCore_config.h","size":656,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/AMDAVX_Serial_KokkosCore_config.h","size":568,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/None_Serial_KokkosCore_config.h","size":542,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Pascal60_OpenMP_KokkosCore_config.h","size":542,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Maxwell52_Serial_KokkosCore_config.h","size":542,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/HSW_Pthread_KokkosCore_config.h","size":629,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Power9_ROCm_KokkosCore_config.h","size":662,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/KNC_Pthread_KokkosCore_config.h","size":625,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/ARMv8-ThunderX_Pthread_KokkosCore_config.h","size":609,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/KNC_OpenMP_KokkosCore_config.h","size":624,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Maxwell_ROCm_KokkosCore_config.h","size":571,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Maxwell52_Pthread_KokkosCore_config.h","size":543,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/KNL_Pthread_KokkosCore_config.h","size":634,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Pascal60_Serial_KokkosCore_config.h","size":542,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Power7_Serial_KokkosCore_config.h","size":633,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Maxwell53_OpenMP_KokkosCore_config.h","size":542,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Kepler37_OpenMP_KokkosCore_config.h","size":542,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Power7_ROCm_KokkosCore_config.h","size":662,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Power7_Pthread_KokkosCore_config.h","size":634,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/None_Qthreads_KokkosCore_config.h","size":544,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/SNB_Serial_KokkosCore_config.h","size":627,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Maxwell52_OpenMP_KokkosCore_config.h","size":542,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Power7_Qthreads_KokkosCore_config.h","size":635,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/WSM_OpenMP_KokkosCore_config.h","size":629,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/ARMv80_Serial_KokkosCore_config.h","size":571,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Power8_Serial_KokkosCore_config.h","size":633,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/ARMv81_ROCm_KokkosCore_config.h","size":600,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/ARMv81_Qthreads_KokkosCore_config.h","size":573,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/KNC_Qthreads_KokkosCore_config.h","size":626,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/SKX_Serial_KokkosCore_config.h","size":688,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/HSW_Serial_KokkosCore_config.h","size":628,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Maxwell50_Pthread_KokkosCore_config.h","size":543,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Pascal61_Pthread_KokkosCore_config.h","size":543,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Power8_Pthread_KokkosCore_config.h","size":634,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/None_Cuda_KokkosCore_config.h","size":569,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Maxwell52_Cuda_KokkosCore_config.h","size":631,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/SKX_Qthreads_KokkosCore_config.h","size":690,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Pascal61_OpenMP_KokkosCore_config.h","size":542,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Kepler35_Cuda_KokkosCore_config.h","size":629,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Pascal60_Cuda_KokkosCore_config.h","size":629,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/HSW_Cuda_KokkosCore_config.h","size":655,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/SKX_ROCm_KokkosCore_config.h","size":717,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/SNB_Pthread_KokkosCore_config.h","size":628,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Kepler_Pthread_KokkosCore_config.h","size":543,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/AMDAVX_OpenMP_KokkosCore_config.h","size":568,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Pascal60_Qthreads_KokkosCore_config.h","size":544,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Maxwell50_Cuda_KokkosCore_config.h","size":631,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/AMDAVX_Pthread_KokkosCore_config.h","size":569,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/WSM_ROCm_KokkosCore_config.h","size":658,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Maxwell_OpenMP_KokkosCore_config.h","size":542,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/BGQ_Serial_KokkosCore_config.h","size":542,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Kepler_Serial_KokkosCore_config.h","size":542,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/BGQ_Pthread_KokkosCore_config.h","size":543,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Kepler32_Pthread_KokkosCore_config.h","size":543,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Maxwell53_ROCm_KokkosCore_config.h","size":571,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Power9_Serial_KokkosCore_config.h","size":633,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Maxwell_Qthreads_KokkosCore_config.h","size":544,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/ARMv8-ThunderX_Serial_KokkosCore_config.h","size":608,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/ARMv80_Cuda_KokkosCore_config.h","size":598,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/BDW_Pthread_KokkosCore_config.h","size":683,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/ARMv8-ThunderX_ROCm_KokkosCore_config.h","size":637,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Kepler35_Qthreads_KokkosCore_config.h","size":544,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Maxwell_Pthread_KokkosCore_config.h","size":543,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Kepler37_Pthread_KokkosCore_config.h","size":543,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Kepler30_Cuda_KokkosCore_config.h","size":629,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Kepler32_Cuda_KokkosCore_config.h","size":629,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Kepler32_OpenMP_KokkosCore_config.h","size":542,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/BDW_Cuda_KokkosCore_config.h","size":709,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Kepler35_Serial_KokkosCore_config.h","size":542,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/ARMv8-ThunderX_Cuda_KokkosCore_config.h","size":635,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Kepler30_Pthread_KokkosCore_config.h","size":543,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Kepler37_ROCm_KokkosCore_config.h","size":571,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Power8_ROCm_KokkosCore_config.h","size":662,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/WSM_Pthread_KokkosCore_config.h","size":630,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/ARMv81_Cuda_KokkosCore_config.h","size":598,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/SNB_Qthreads_KokkosCore_config.h","size":629,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/ARMv8-ThunderX_Qthreads_KokkosCore_config.h","size":610,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/SNB_OpenMP_KokkosCore_config.h","size":627,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Kepler37_Cuda_KokkosCore_config.h","size":629,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/SNB_ROCm_KokkosCore_config.h","size":656,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/BGQ_OpenMP_KokkosCore_config.h","size":542,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Kepler35_Pthread_KokkosCore_config.h","size":543,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/ARMv80_OpenMP_KokkosCore_config.h","size":571,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Maxwell50_ROCm_KokkosCore_config.h","size":571,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/None_OpenMP_KokkosCore_config.h","size":542,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Power8_OpenMP_KokkosCore_config.h","size":633,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Pascal61_Qthreads_KokkosCore_config.h","size":544,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Maxwell52_Qthreads_KokkosCore_config.h","size":544,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/SNB_Cuda_KokkosCore_config.h","size":654,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/KNL_Qthreads_KokkosCore_config.h","size":635,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/KNL_ROCm_KokkosCore_config.h","size":662,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Power9_Pthread_KokkosCore_config.h","size":634,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/None_Pthread_KokkosCore_config.h","size":543,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Kepler32_ROCm_KokkosCore_config.h","size":571,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Maxwell53_Serial_KokkosCore_config.h","size":542,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/KNL_Cuda_KokkosCore_config.h","size":660,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Maxwell50_OpenMP_KokkosCore_config.h","size":542,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/None_ROCm_KokkosCore_config.h","size":571,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Power7_Cuda_KokkosCore_config.h","size":660,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/ARMv81_Serial_KokkosCore_config.h","size":571,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/KNL_OpenMP_KokkosCore_config.h","size":633,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Kepler32_Qthreads_KokkosCore_config.h","size":544,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/HSW_OpenMP_KokkosCore_config.h","size":628,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Kepler_Qthreads_KokkosCore_config.h","size":544,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/KNC_Serial_KokkosCore_config.h","size":624,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/ARMv8-ThunderX_OpenMP_KokkosCore_config.h","size":608,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Pascal61_Cuda_KokkosCore_config.h","size":629,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Kepler32_Serial_KokkosCore_config.h","size":542,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/WSM_Qthreads_KokkosCore_config.h","size":631,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Power8_Cuda_KokkosCore_config.h","size":660,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Kepler30_OpenMP_KokkosCore_config.h","size":542,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/HSW_ROCm_KokkosCore_config.h","size":657,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/KNL_Serial_KokkosCore_config.h","size":633,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/Power9_Cuda_KokkosCore_config.h","size":660,"last_modified":1528906778},\n {"name":"./kokkos/core/unit_test/config/results/BGQ_Cuda_KokkosCore_config.h","size":569,"last_modified":1528906778},\n {"name":"./kokkos/tpls/gtest/gtest/gtest.h","size":830614,"last_modified":1528906780},\n {"name":"./build/kokkos/KokkosCore_config.h","size":634,"last_modified":1531841817},\n {"name":"./kokkos/example/cmake_build/foo.f","size":108,"last_modified":1528906780}\n ],\n "git_info":{\n "commit_hash":"4534681817954e93dafdb03e27b6f49a15052a98",\n "branch":"test"\n }\n}\n}\n}')
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))
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/ """
"""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()
""" 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 max_dist = 50 min_dist = 4 branch_len = 3 tree = None class Leaf: def __init__(self, pos): self.pos = pos self.reached = False 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 self.dir = dir.copy().normalize() self.attractors = [] 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) new_dir.add(attr_dir) 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) dp = new_branch.dir.dot(self.dir) if abs(1 - dp) < 0.002: random_offset = p_vector(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) stroke_weight(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] self.passive_branches = [] 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: branch.add_attractor(leaf(PVector.add(branch.pos, branch.dir))) new_branch = branch.grow() self.active_branches.append(new_branch) def grow(self): 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) 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 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 def draw(self, leaves=False, branches=True): if leaves: for l in self.leaves: stroke_weight(2) stroke(0) l.draw() if branches: stroke_weight(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(p_vector(random(width), random(height - 100))) leaves.append(leaf) return leaves def create_leaves_from_image(): img = load_image('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(p_vector(xl, yl))) return leaves def setup(): global tree size(500, 500) background(255) random_seed(43) leaves = create_leaves_from_image() root = branch(parent=None, pos=p_vector(width / 2, height), dir=p_vector(0, -1)) tree = tree(root, leaves) def draw(): if len(tree.active_branches) == 0: no_loop() begin_record(SVG, 'maple_leaf.svg') tree.draw(leaves=True, branches=True) end_record() print('finished') return background(255) tree.grow() tree.update_passive_counts() tree.draw(leaves=True, branches=True) def key_pressed(): if key == 'p': print('stopping the loop') no_loop()
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}")
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 """
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 event_log_entry_collection() instance = zzz() 'hardcoded/returns an instance of the class' def copy_to(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 get_enumerator(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).\n\n\n\nGet: Count(self: EventLogEntryCollection) -> int\n\n\n\n'
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"], )
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, 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=['manual', 'local', '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))
count = 1 while count < 10: print(str(x + count)) count = count + 1 count = 275 while count > 250: count = count - 1 if count % 2 == 0: print(str(z) + ': This number is even') count = 1 while count == 1: print('Count is equal to the number 1') count = 1 while count < 10: print(str(2 * count)) count += 1 else: print('Done') count = 1 while count < 10: if count == 5: break count += 1 count = 1 while count < 10: count += 1 if count % 2 == 0: continue print(str(count)) count = 1 while count < 10: count += 1 if count % 2 == 0: pass elif count == 5: pass print(str(count))
print("Akshitha Sai"); print("AM.EN.U4CSE18122"); print("CSE"); print("marvel rocks");
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', ], }, ], }
{'variables': {'chromium_code': 1}, 'targets': [{'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
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)
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.'''
help = 'tdo -- A todo list tool for the terminal.\n\nAvailable commands:\ntdo Lists all undone tasks, sorted by category.\ntdo all Lists all tasks.\ntdo add "task" [list] Add a task to a certain list or the default list.\ntdo edit id Edit a task description.\ntdo done id Mark tha task with the ID \'id\' as done.\ntdo newlist "name" Create a new list named \'name\'\ntdo remove "list" Delete the list \'list\'\ntdo clean [list] Removes all tasks that have been marked as done.\n If you specify a list name, only this list is cleared.\ntdo lists List all lists with a statistic of undone/done tasks.\ntdo help Display this help.\ntdo reset DANGER ZONE. Delete all your todos and todo lists.\ntdo themes Shows all available themes.\ntdo settheme id Set the theme to <id>\ntdo 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" ] }
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']}
# 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 } }
partners = {'abcd123': {'name': 'Partner 1 inc.', 'shared_key': '5f4dcc3b5aa765d61d8327deb882cf99', 'is_active': True}, '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)}")
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])
text = open('abc.txt', 'r') d = dict() for line in Text: line = line.strip() line = line.lower() words = line.split(' ') 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()
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) 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")
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
""" 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 = {} 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) args['genome_path'] = args.get('genome_path', None) args['overwrite'] = args.get('overwrite', False) args['threads'] = args.get('threads', 8) if demx: args['demx_type'] = args.get('demx_type', 'p7') 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) 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') args['trim_to_length'] = args.get('trim_to_length', 0) args['AD3'] = args.get('AD3', 'AGATCGGAAGAGCGTCGTGTAGGGAAAGAGTGT') args['AD5'] = args.get('AD5', None) if align: args['spikein'] = args.get('spikein', None) args['index_ext'] = args.get('index_ext', None) args['unique_only'] = args.get('unique_only', True) args['aligner'] = args.get('aligner', 'bowtie') 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) if call_peak: args['peak_caller'] = args.get('peak_caller', 'pyicoclip') 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]}
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 _
class Solution: def find_repeat_number(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)
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('')
class Graph: """Representation of a simple graph using an adjacency map.""" 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): return hash(id(self)) 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): return hash((self._origin, self._destination)) def __init__(self, directed=False): """Create an empty graph (undirected, by default). Graph is directed if optional parameter is set to True. """ self._outgoing = {} 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 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)) return total if self.is_directed() else total // 2 def edges(self): """Return a set of all edges of the graph.""" result = set() for secondary_map in self._outgoing.values(): result.update(secondary_map.values()) 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] = {} 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 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 :)') 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('') vertex_list = list(G._outgoing.keys()) for i in VertexList: vertex_adj = 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)
(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)
""" 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
""" 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 reverse_integer(self, n): 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
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)
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
"""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
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))
def min_swap(arr, n, k): count = 0 for i in range(0, n): if arr[i] <= k: count = count + 1 bad = 0 for i in range(0, count): if arr[i] > k: bad = bad + 1 ans = bad j = count for i in range(0, n): if j == n: break if arr[i] > k: bad = bad - 1 if arr[j] > k: bad = bad + 1 ans = min(ans, bad) j = j + 1 return ans arr = [2, 1, 5, 6, 3] n = len(arr) k = 3 print(min_swap(arr, n, k))
#!/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' #######################################################################################
"""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 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) + ")"
class Product: def __init__(self, name='', price=0.0, discountPercent=0): self.name = name self.price = price self.discountPercent = discountPercent def get_discount_amount(self): return self.price * self.discountPercent / 100 def get_discount_price(self): return self.price - self.getDiscountAmount() def get_description(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) 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) def get_description(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 get_description(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 get_description(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
class Solution: def is_palindrome(self, head: ListNode) -> bool: (slow, fast) = (head, head) tot = 0 while fast and fast.next: fast = fast.next.next slow = slow.next if not fast: mid = slow else: mid = slow.next mid = self.reveserLL(mid) p1 = head p2 = mid while p1 and p2: if p1.val != p2.val: return False p1 = p1.next p2 = p2.next return True def reveser_ll(self, head: ListNode) -> ListNode: new_next = None curr = head while curr: prev = curr.next curr.next = newNext new_next = curr curr = prev return newNext
n = int(input()) count = 0 for i in range(n): one_word = list(input()) count_arr = [0 for _ in range(26)] pre = "" for c in one_word: idx = ord(c) - 97 cur = c if (count_arr[idx] == 0) or (pre == cur): count_arr[idx] += 1 pre = c if sum(count_arr) == len(one_word): count += 1 print(count)
n = int(input()) count = 0 for i in range(n): one_word = list(input()) count_arr = [0 for _ in range(26)] pre = '' for c in one_word: idx = ord(c) - 97 cur = c if count_arr[idx] == 0 or pre == cur: count_arr[idx] += 1 pre = c if sum(count_arr) == len(one_word): count += 1 print(count)
p=21888242871839275222246405745257275088696311157297823662689037894645226208583 print("over 253 bit") for i in range (10): print(i, (p * i) >> 253) def maxarg(x): return x // p print("maxarg") for i in range(16): print(i, maxarg(i << 253)) x=0x2c130429c1d4802eb8703197d038ebd5109f96aee333bd027963094f5bb33ad y = x * 9 print(hex(y))
p = 21888242871839275222246405745257275088696311157297823662689037894645226208583 print('over 253 bit') for i in range(10): print(i, p * i >> 253) def maxarg(x): return x // p print('maxarg') for i in range(16): print(i, maxarg(i << 253)) x = 1245960260290650057564252865548478619374135861792959100192203205078981227437 y = x * 9 print(hex(y))
""" Configuration for development - change these with caution! """ REGION_DIMS = (512, 512) DEFAULT_FILTRATION_STATUS = None DEFAULT_FILTRATION_CACHE_FILEPATH = "filtration_cache.h5" DEFULAT_FILTRATION_CACHE_TITLE = "filtration_cache" DATASET_FILTRATION_PREPROCESSING_MULTIPROCESSING = False FILTRATION_CACHE_APPLY_FILTRATION_MULTIPROCESSING = True
""" Configuration for development - change these with caution! """ region_dims = (512, 512) default_filtration_status = None default_filtration_cache_filepath = 'filtration_cache.h5' defulat_filtration_cache_title = 'filtration_cache' dataset_filtration_preprocessing_multiprocessing = False filtration_cache_apply_filtration_multiprocessing = True
# This problem was recently asked by AirBNB: # You are given a singly linked list and an integer k. Return the linked list, removing the k-th last element from the list. # Try to do it in a single pass and using constant space. class Node: def __init__(self, val, next=None): self.val = val self.next = next def __str__(self): current_node = self result = [] while current_node: result.append(current_node.val) current_node = current_node.next return str(result) def remove_kth_from_linked_list(head, k): # Fill this in i = 1 res = [] n = head while n and n.next: if i >= k: res.append(n.next.val) else: res.append(n.val) i += 1 n = n.next return res head = Node(1, Node(2, Node(3, Node(4, Node(5))))) print(head) # [1, 2, 3, 4, 5] head = remove_kth_from_linked_list(head, 3) print(head) # [1, 2, 4, 5]
class Node: def __init__(self, val, next=None): self.val = val self.next = next def __str__(self): current_node = self result = [] while current_node: result.append(current_node.val) current_node = current_node.next return str(result) def remove_kth_from_linked_list(head, k): i = 1 res = [] n = head while n and n.next: if i >= k: res.append(n.next.val) else: res.append(n.val) i += 1 n = n.next return res head = node(1, node(2, node(3, node(4, node(5))))) print(head) head = remove_kth_from_linked_list(head, 3) print(head)
a=int(input()) if(a%2==0): if(a>=2 and a<5): print ("Not Weird") elif(a<=20): print("Weird") else: print("Not Weird") else: print("Weird")
a = int(input()) if a % 2 == 0: if a >= 2 and a < 5: print('Not Weird') elif a <= 20: print('Weird') else: print('Not Weird') else: print('Weird')
# test builtin object() # creation object() # printing print(repr(object())[:7])
object() print(repr(object())[:7])
class Solution: def findSpecialInteger(self, arr: List[int]) -> int: n = len(arr) // 4 c = 0 prev = -1 for e in arr: if e == prev: c += 1 else: c = 1 prev = e if c > n: return e
class Solution: def find_special_integer(self, arr: List[int]) -> int: n = len(arr) // 4 c = 0 prev = -1 for e in arr: if e == prev: c += 1 else: c = 1 prev = e if c > n: return e
# # Copyright 2010 British Broadcasting Corporation and Kamaelia Contributors(1) # # (1) Kamaelia Contributors are listed in the AUTHORS file and at # http://www.kamaelia.org/AUTHORS - please extend this file, # not this notice. # # 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. # ------------------------------------------------------------------------- """\ =============== Axon Exceptions =============== AxonException is the base class for all axon exceptions defined here. """ class AxonException(Exception): """\ Base class for axon exceptions. Any arguments listed are placed in self.args """ def __init__(self, *args): self.args = args class normalShutdown(AxonException): # NOT SURE OF MEANING # NOT USED IN AXON # NOT USED IN KAMAELIA # NOT USED IN SKETCHES pass class invalidComponentInterface(AxonException): """\ Component does not have the required inboxes/outboxes. Arguments: - *"inboxes"* or *"outboxes"* - indicating which is at fault - the component in question - (inboxes,outboxes) listing the expected interface Possible causes: - Axon.util.testInterface() called with wrong interface/component specified? """ pass class noSpaceInBox(AxonException): """\ Destination inbox is full. Possible causes: - The destination inbox is size limited? - It is a threaded component with too small a 'default queue size'? """ pass class BadParentTracker(AxonException): """\ Parent tracker is bad (not actually a tracker?) Possible causes: - creating a coordinatingassistanttracker specifying a parent that is not also a coordinatingassistanttracker? """ pass class ServiceAlreadyExists(AxonException): """\ A service already exists with the name you specifed. Possible causes: - Two or more components are trying to register services with the coordinating assistant tracker using the same name? """ pass class BadComponent(AxonException): """\ The object provided does not appear to be a proper component. Arguments: - the 'component' in question Possible causes: - Trying to register a service (component,boxname) with the coordinating assistant tracker supplying something that isn't a component? """ pass class BadInbox(AxonException): """\ The inbox named does not exist or is not a proper inbox. Arguments: - the 'component' in question - the inbox name in question Possible causes: - Trying to register a service (component,boxname) with the coordinating assistant tracker supplying something that isn't a component? """ pass class MultipleServiceDeletion(AxonException): """\ Trying to delete a service that does not exist. Possible causes: - Trying to delete a service (component,boxname) from the coordinating assistant tracker twice or more times? """ pass class NamespaceClash(AxonException): """\ Clash of names. Possible causes: - two or more requests made to coordinating assistant tracker to track values under a given name (2nd request will clash with first)? - should have used updateValue() method to update a value being tracked by the coordinating assistant tracker? """ class AccessToUndeclaredTrackedVariable(AxonException): """\ Attempt to access a value being tracked by the coordinating assistant tracker that isn't actually being tracked yet! Arguments: - the name of the value that couldn't be accessed - the value that it was to be updated with (optional) Possible causes: - Attempt to update or retrieve a value with a misspelt name? - Attempt to update or retrieve a value before it starts being tracked? """ class ArgumentsClash(AxonException): """\ Supplied arguments clash with each other. Possible causes: - meaning of arguments misunderstood? not allowed this given combination of arguments or values of arguments? """ pass class BoxAlreadyLinkedToDestination(AxonException): """\ The inbox/outbox already has a linkage going *from* it to a destination. Arguments: - the box that is already linked - the box that it is linked to - the box you were trying to link it to Possible causes: - Are you trying to make a linkage going from an inbox/outbox to more than one destination? - perhaps another component has already made a linkage from that inbox/outbox? """ pass
"""=============== Axon Exceptions =============== AxonException is the base class for all axon exceptions defined here. """ class Axonexception(Exception): """ Base class for axon exceptions. Any arguments listed are placed in self.args """ def __init__(self, *args): self.args = args class Normalshutdown(AxonException): pass class Invalidcomponentinterface(AxonException): """ Component does not have the required inboxes/outboxes. Arguments: - *"inboxes"* or *"outboxes"* - indicating which is at fault - the component in question - (inboxes,outboxes) listing the expected interface Possible causes: - Axon.util.testInterface() called with wrong interface/component specified? """ pass class Nospaceinbox(AxonException): """ Destination inbox is full. Possible causes: - The destination inbox is size limited? - It is a threaded component with too small a 'default queue size'? """ pass class Badparenttracker(AxonException): """ Parent tracker is bad (not actually a tracker?) Possible causes: - creating a coordinatingassistanttracker specifying a parent that is not also a coordinatingassistanttracker? """ pass class Servicealreadyexists(AxonException): """ A service already exists with the name you specifed. Possible causes: - Two or more components are trying to register services with the coordinating assistant tracker using the same name? """ pass class Badcomponent(AxonException): """ The object provided does not appear to be a proper component. Arguments: - the 'component' in question Possible causes: - Trying to register a service (component,boxname) with the coordinating assistant tracker supplying something that isn't a component? """ pass class Badinbox(AxonException): """ The inbox named does not exist or is not a proper inbox. Arguments: - the 'component' in question - the inbox name in question Possible causes: - Trying to register a service (component,boxname) with the coordinating assistant tracker supplying something that isn't a component? """ pass class Multipleservicedeletion(AxonException): """ Trying to delete a service that does not exist. Possible causes: - Trying to delete a service (component,boxname) from the coordinating assistant tracker twice or more times? """ pass class Namespaceclash(AxonException): """ Clash of names. Possible causes: - two or more requests made to coordinating assistant tracker to track values under a given name (2nd request will clash with first)? - should have used updateValue() method to update a value being tracked by the coordinating assistant tracker? """ class Accesstoundeclaredtrackedvariable(AxonException): """ Attempt to access a value being tracked by the coordinating assistant tracker that isn't actually being tracked yet! Arguments: - the name of the value that couldn't be accessed - the value that it was to be updated with (optional) Possible causes: - Attempt to update or retrieve a value with a misspelt name? - Attempt to update or retrieve a value before it starts being tracked? """ class Argumentsclash(AxonException): """ Supplied arguments clash with each other. Possible causes: - meaning of arguments misunderstood? not allowed this given combination of arguments or values of arguments? """ pass class Boxalreadylinkedtodestination(AxonException): """ The inbox/outbox already has a linkage going *from* it to a destination. Arguments: - the box that is already linked - the box that it is linked to - the box you were trying to link it to Possible causes: - Are you trying to make a linkage going from an inbox/outbox to more than one destination? - perhaps another component has already made a linkage from that inbox/outbox? """ pass
''' Data list contains all users info. Each user's info must be a list. First Element: 0 (int) Second Element: name (str) Third Element: username (str) Fourth Element: toph link (str) Fifth Element: dimik link (str) Sixth Element: uri link (str) Note: If any user does not have an account leave there an empty string. ''' data = [ [0, "Mahinul Islam", "mahin", "", "", "https://urionlinejudge.com.br/judge/en/profile/239509"], [0, "Majedul Islam", "majed", "", "", "https://urionlinejudge.com.br/judge/en/profile/229317"], [0, "Md. Mushfiqur Rahman", "mdvirus", "https://toph.co/u/mdvirus", "https://dimikoj.com/users/53/mdvirus", "https://urionlinejudge.com.br/judge/en/profile/223624"], [0, "Md. Shazzad Hossein Shakib", "HackersBoss", "https://toph.co/u/HackersBoss", "", ""], [0, "Abdullah Al Mukit", "newbie_mukit", "https://toph.co/u/newbie_mukit", "", "https://urionlinejudge.com.br/judge/en/profile/228785"], [0, "Md. Toukir Ahammed", "toukir48bit", "https://toph.co/u/toukir48bit", "", ""], [0, "Md. Sifat Al Imtiaz", "SifatTheCoder", "https://toph.co/u/SifatTheCoder", "", ""], [0, "Mojahidul Islam Rakib", "HelloRakib", "https://toph.co/u/HelloRakib", "", ""], [0, "Md. Forhad Islam", "fiveG_coder", "https://toph.co/u/fiveG_coder", "", ""], [0, "Most Rumana Akter Rupa", "programmer_upa", "https://toph.co/u/programmer_upa", "", ""], [0, "Most Keya Akter", "Uniqe_coder", "https://toph.co/u/Uniqe_coder", "", ""], [0, "Most Nargiz Akter", "Simple_coder", "https://toph.co/u/Simple_coder", "", ""], [0, "Most Masuda Akter Momota", "itsmomota", "https://toph.co/u/itsmomota", "", ""], [0, "Lutfor Rahman", "Scanfl", "https://toph.co/u/Scanfl", "", ""], [0, "Most Aysha Akter Borsha", "Smart_coder", "https://toph.co/u/Smart_coder", "", ""] ]
""" Data list contains all users info. Each user's info must be a list. First Element: 0 (int) Second Element: name (str) Third Element: username (str) Fourth Element: toph link (str) Fifth Element: dimik link (str) Sixth Element: uri link (str) Note: If any user does not have an account leave there an empty string. """ data = [[0, 'Mahinul Islam', 'mahin', '', '', 'https://urionlinejudge.com.br/judge/en/profile/239509'], [0, 'Majedul Islam', 'majed', '', '', 'https://urionlinejudge.com.br/judge/en/profile/229317'], [0, 'Md. Mushfiqur Rahman', 'mdvirus', 'https://toph.co/u/mdvirus', 'https://dimikoj.com/users/53/mdvirus', 'https://urionlinejudge.com.br/judge/en/profile/223624'], [0, 'Md. Shazzad Hossein Shakib', 'HackersBoss', 'https://toph.co/u/HackersBoss', '', ''], [0, 'Abdullah Al Mukit', 'newbie_mukit', 'https://toph.co/u/newbie_mukit', '', 'https://urionlinejudge.com.br/judge/en/profile/228785'], [0, 'Md. Toukir Ahammed', 'toukir48bit', 'https://toph.co/u/toukir48bit', '', ''], [0, 'Md. Sifat Al Imtiaz', 'SifatTheCoder', 'https://toph.co/u/SifatTheCoder', '', ''], [0, 'Mojahidul Islam Rakib', 'HelloRakib', 'https://toph.co/u/HelloRakib', '', ''], [0, 'Md. Forhad Islam', 'fiveG_coder', 'https://toph.co/u/fiveG_coder', '', ''], [0, 'Most Rumana Akter Rupa', 'programmer_upa', 'https://toph.co/u/programmer_upa', '', ''], [0, 'Most Keya Akter', 'Uniqe_coder', 'https://toph.co/u/Uniqe_coder', '', ''], [0, 'Most Nargiz Akter', 'Simple_coder', 'https://toph.co/u/Simple_coder', '', ''], [0, 'Most Masuda Akter Momota', 'itsmomota', 'https://toph.co/u/itsmomota', '', ''], [0, 'Lutfor Rahman', 'Scanfl', 'https://toph.co/u/Scanfl', '', ''], [0, 'Most Aysha Akter Borsha', 'Smart_coder', 'https://toph.co/u/Smart_coder', '', '']]
students = [] references = [] benefits = [] MODE_SPECIFIC = '1. SPECIFIC' MODE_HOSTEL = '2. HOSTEL' MODE_MCDM = '3. MCDM' MODE_REMAIN = '4. REMAIN'
students = [] references = [] benefits = [] mode_specific = '1. SPECIFIC' mode_hostel = '2. HOSTEL' mode_mcdm = '3. MCDM' mode_remain = '4. REMAIN'
#!/usr/bin/python3 '''Day 6 of the 2017 advent of code''' def redistribute(memory): '''helper to redistribute the memory''' size = len(memory) max_index = 0 max_value = memory[0] #always assumed to be memory #find max and index of max for i in range(size): if memory[i] > max_value: max_value = memory[i] max_index = i #reset memory at max memory[max_index] = 0 next_block = 1 while max_value: memory[(max_index + next_block) % size] += 1 next_block += 1 max_value -= 1 return memory def part_one(data): """Return the answer to part one of this day""" states = {} count = 0 while True: state = str(data) if state not in states: states[state] = 1 count += 1 else: if states[state] == 2: break else: states[state] += 1 data = redistribute(data) return count def part_two(data): """Return the answer to part two of this day""" states = {} count = 0 while True: state = str(data) if state not in states: states[state] = 1 else: if states[state] == 2: break else: states[state] += 1 count += 1 data = redistribute(data) return count if __name__ == "__main__": with open('input', 'r') as file: ROWS = file.readlines() DATA = [int(numb) for numb in ROWS[0].split()] print("Part 1: {}".format(part_one(DATA))) print("Part 2: {}".format(part_two(DATA)))
"""Day 6 of the 2017 advent of code""" def redistribute(memory): """helper to redistribute the memory""" size = len(memory) max_index = 0 max_value = memory[0] for i in range(size): if memory[i] > max_value: max_value = memory[i] max_index = i memory[max_index] = 0 next_block = 1 while max_value: memory[(max_index + next_block) % size] += 1 next_block += 1 max_value -= 1 return memory def part_one(data): """Return the answer to part one of this day""" states = {} count = 0 while True: state = str(data) if state not in states: states[state] = 1 count += 1 elif states[state] == 2: break else: states[state] += 1 data = redistribute(data) return count def part_two(data): """Return the answer to part two of this day""" states = {} count = 0 while True: state = str(data) if state not in states: states[state] = 1 elif states[state] == 2: break else: states[state] += 1 count += 1 data = redistribute(data) return count if __name__ == '__main__': with open('input', 'r') as file: rows = file.readlines() data = [int(numb) for numb in ROWS[0].split()] print('Part 1: {}'.format(part_one(DATA))) print('Part 2: {}'.format(part_two(DATA)))
secret_password = "marty" def apasswordcheker(password_checkers): if password == "marty": print("You figured out the secret password") def password_check(passwd): SpecialSym =['$', '@', '#', '%'] val = True if len(passwd) < 6: print('length should be at least 6') val = False if len(passwd) > 20: print('length should be not be greater than 8') val = False if not any(char.isdigit() for char in passwd): print('Password should have at least one numeral') val = False if not any(char.isupper() for char in passwd): print('Password should have at least one uppercase letter') val = False if not any(char.islower() for char in passwd): print('Password should have at least one lowercase letter') val = False if not any(char in SpecialSym for char in passwd): print('Password should have at least one of the symbols $@#') val = False if val: return val def password_check(passwd): SpecialSym =['$', '@', '#', '%'] val = True if len(passwd) < 6: print('length should be at least 6') val = False if len(passwd) > 20: print('length should be not be greater than 8') val = False if not any(char.isdigit() for char in passwd): print('Password should have at least one numeral') val = False if not any(char.isupper() for char in passwd): print('Password should have at least one uppercase letter') val = False if not any(char.islower() for char in passwd): print('Password should have at least one lowercase letter') val = False if not any(char in SpecialSym for char in passwd): print('Password should have at least one of the symbols $@#') val = False if val: return val def password_chek(passwd): SpecialSym =['$', '@', '#', '%'] val = True if len(passwd) < 6: print('length should be at least 6') val = False if len(passwd) > 20: print('length should be not be greater than 8') val = False if not any(char.isdigit() for char in passwd): print('Password should have at least one numeral') val = False if not any(char.isupper() for char in passwd): print('Password should have at least one uppercase letter') val = False if not any(char.islower() for char in passwd): print('Password should have at least one lowercase letter') val = False if not any(char in SpecialSym for char in passwd): print('Password should have at least one of the symbols $@#') val = False if val: return val tannen = "jigowatt" check = "FALSE" while check == "FALSE": user_password = input("Hi Mr Tannen, What is your password (lowercase only) ? ") if user_password == tannen: check = "TRUE" print("Hello Detective Tannen, the last file you accessed is: topsecret.txt") elif user_password == "marty": print("Please dont look at the code to figure out the password ") else: print("That is incorrect, please try again") def passord_check(passwd): SpecialSym =['$', '@', '#', '%'] val = True if len(passwd) < 6: print('length should be at least 6') val = False if len(passwd) > 20: print('length should be not be greater than 8') val = False if not any(char.isdigit() for char in passwd): print('Password should have at least one numeral') val = False if not any(char.isupper() for char in passwd): print('Password should have at least one uppercase letter') val = False if not any(char.islower() for char in passwd): print('Password should have at least one lowercase letter') val = False if not any(char in SpecialSym for char in passwd): print('Password should have at least one of the symbols $@#') val = False if val: return val
secret_password = 'marty' def apasswordcheker(password_checkers): if password == 'marty': print('You figured out the secret password') def password_check(passwd): special_sym = ['$', '@', '#', '%'] val = True if len(passwd) < 6: print('length should be at least 6') val = False if len(passwd) > 20: print('length should be not be greater than 8') val = False if not any((char.isdigit() for char in passwd)): print('Password should have at least one numeral') val = False if not any((char.isupper() for char in passwd)): print('Password should have at least one uppercase letter') val = False if not any((char.islower() for char in passwd)): print('Password should have at least one lowercase letter') val = False if not any((char in SpecialSym for char in passwd)): print('Password should have at least one of the symbols $@#') val = False if val: return val def password_check(passwd): special_sym = ['$', '@', '#', '%'] val = True if len(passwd) < 6: print('length should be at least 6') val = False if len(passwd) > 20: print('length should be not be greater than 8') val = False if not any((char.isdigit() for char in passwd)): print('Password should have at least one numeral') val = False if not any((char.isupper() for char in passwd)): print('Password should have at least one uppercase letter') val = False if not any((char.islower() for char in passwd)): print('Password should have at least one lowercase letter') val = False if not any((char in SpecialSym for char in passwd)): print('Password should have at least one of the symbols $@#') val = False if val: return val def password_chek(passwd): special_sym = ['$', '@', '#', '%'] val = True if len(passwd) < 6: print('length should be at least 6') val = False if len(passwd) > 20: print('length should be not be greater than 8') val = False if not any((char.isdigit() for char in passwd)): print('Password should have at least one numeral') val = False if not any((char.isupper() for char in passwd)): print('Password should have at least one uppercase letter') val = False if not any((char.islower() for char in passwd)): print('Password should have at least one lowercase letter') val = False if not any((char in SpecialSym for char in passwd)): print('Password should have at least one of the symbols $@#') val = False if val: return val tannen = 'jigowatt' check = 'FALSE' while check == 'FALSE': user_password = input('Hi Mr Tannen, What is your password (lowercase only) ? ') if user_password == tannen: check = 'TRUE' print('Hello Detective Tannen, the last file you accessed is: topsecret.txt') elif user_password == 'marty': print('Please dont look at the code to figure out the password ') else: print('That is incorrect, please try again') def passord_check(passwd): special_sym = ['$', '@', '#', '%'] val = True if len(passwd) < 6: print('length should be at least 6') val = False if len(passwd) > 20: print('length should be not be greater than 8') val = False if not any((char.isdigit() for char in passwd)): print('Password should have at least one numeral') val = False if not any((char.isupper() for char in passwd)): print('Password should have at least one uppercase letter') val = False if not any((char.islower() for char in passwd)): print('Password should have at least one lowercase letter') val = False if not any((char in SpecialSym for char in passwd)): print('Password should have at least one of the symbols $@#') val = False if val: return val
def levenshtein_dis(wordA, wordB): wordA = wordA.lower() # making the wordA lower case wordB = wordB.lower() # making the wordB lower case # get the length of the words and defining the variables length_A = len(wordA) length_B = len(wordB) max_len = 0 diff = 0 distances = [] distance = 0 # check the difference of the word to decide how many letter should be delete or add # also store that value in the 'diff' variable and get the max length of the user given words if length_A > length_B: diff = length_A - length_B max_len = length_A elif length_A < length_B: diff = length_B - length_A max_len = length_B else: diff = 0 max_len = length_A # starting from the front of the words and compare the letters of the both user given words for x in range(max_len - diff): if wordA[x] != wordB[x]: distance += 1 # add the 'distance' value to the 'distances' array distances.append(distance) distance = 0 # starting from the back of the words and compare the letters of the both user given words for x in range(max_len - diff): if wordA[-(x + 1)] != wordB[-(x + 1)]: distance += 1 # add the 'distance' value to the 'distances' array distances.append(distance) # get the minimun value of the 'distances' array and add it with the 'diff' values and # store them in the 'diff' variable diff = diff + min(distances) # return the value return diff
def levenshtein_dis(wordA, wordB): word_a = wordA.lower() word_b = wordB.lower() length_a = len(wordA) length_b = len(wordB) max_len = 0 diff = 0 distances = [] distance = 0 if length_A > length_B: diff = length_A - length_B max_len = length_A elif length_A < length_B: diff = length_B - length_A max_len = length_B else: diff = 0 max_len = length_A for x in range(max_len - diff): if wordA[x] != wordB[x]: distance += 1 distances.append(distance) distance = 0 for x in range(max_len - diff): if wordA[-(x + 1)] != wordB[-(x + 1)]: distance += 1 distances.append(distance) diff = diff + min(distances) return diff
# # PySNMP MIB module SHIVA-ETHER-MIB (http://snmplabs.com/pysmi) # ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/SHIVA-ETHER-MIB # Produced by pysmi-0.3.4 at Mon Apr 29 20:54:57 2019 # On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4 # Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15) # ObjectIdentifier, OctetString, Integer = mibBuilder.importSymbols("ASN1", "ObjectIdentifier", "OctetString", "Integer") NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues") ConstraintsUnion, ConstraintsIntersection, ValueSizeConstraint, SingleValueConstraint, ValueRangeConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ConstraintsUnion", "ConstraintsIntersection", "ValueSizeConstraint", "SingleValueConstraint", "ValueRangeConstraint") tEther, = mibBuilder.importSymbols("SHIVA-MIB", "tEther") ModuleCompliance, NotificationGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "NotificationGroup") Unsigned32, TimeTicks, ObjectIdentity, iso, MibScalar, MibTable, MibTableRow, MibTableColumn, Gauge32, NotificationType, Integer32, IpAddress, Counter64, Bits, Counter32, ModuleIdentity, MibIdentifier = mibBuilder.importSymbols("SNMPv2-SMI", "Unsigned32", "TimeTicks", "ObjectIdentity", "iso", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "Gauge32", "NotificationType", "Integer32", "IpAddress", "Counter64", "Bits", "Counter32", "ModuleIdentity", "MibIdentifier") TextualConvention, DisplayString = mibBuilder.importSymbols("SNMPv2-TC", "TextualConvention", "DisplayString") tEtherTable = MibTable((1, 3, 6, 1, 4, 1, 166, 4, 5, 1), ) if mibBuilder.loadTexts: tEtherTable.setStatus('mandatory') pysmiFakeCol1000 = MibTableColumn((1, 3, 6, 1, 4, 1, 166, 4, 5, 1, 1) + (1000, ), Integer32()) tEtherEntry = MibTableRow((1, 3, 6, 1, 4, 1, 166, 4, 5, 1, 1), ).setIndexNames((0, "SHIVA-ETHER-MIB", "pysmiFakeCol1000")) if mibBuilder.loadTexts: tEtherEntry.setStatus('mandatory') etherCRCErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 166, 4, 5, 1, 1, 1), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: etherCRCErrors.setStatus('mandatory') etherAlignErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 166, 4, 5, 1, 1, 2), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: etherAlignErrors.setStatus('mandatory') etherResourceErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 166, 4, 5, 1, 1, 3), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: etherResourceErrors.setStatus('mandatory') etherOverrunErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 166, 4, 5, 1, 1, 4), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: etherOverrunErrors.setStatus('mandatory') etherInPackets = MibTableColumn((1, 3, 6, 1, 4, 1, 166, 4, 5, 1, 1, 5), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: etherInPackets.setStatus('mandatory') etherOutPackets = MibTableColumn((1, 3, 6, 1, 4, 1, 166, 4, 5, 1, 1, 6), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: etherOutPackets.setStatus('mandatory') etherBadTransmits = MibTableColumn((1, 3, 6, 1, 4, 1, 166, 4, 5, 1, 1, 7), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: etherBadTransmits.setStatus('mandatory') etherOversizeFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 166, 4, 5, 1, 1, 8), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: etherOversizeFrames.setStatus('mandatory') etherSpurRUReadys = MibTableColumn((1, 3, 6, 1, 4, 1, 166, 4, 5, 1, 1, 9), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: etherSpurRUReadys.setStatus('mandatory') etherSpurCUActives = MibTableColumn((1, 3, 6, 1, 4, 1, 166, 4, 5, 1, 1, 10), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: etherSpurCUActives.setStatus('mandatory') etherSpurUnknowns = MibTableColumn((1, 3, 6, 1, 4, 1, 166, 4, 5, 1, 1, 11), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: etherSpurUnknowns.setStatus('mandatory') etherBcastDrops = MibTableColumn((1, 3, 6, 1, 4, 1, 166, 4, 5, 1, 1, 12), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: etherBcastDrops.setStatus('mandatory') etherReceiverRestarts = MibTableColumn((1, 3, 6, 1, 4, 1, 166, 4, 5, 1, 1, 13), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: etherReceiverRestarts.setStatus('mandatory') etherReinterrupts = MibTableColumn((1, 3, 6, 1, 4, 1, 166, 4, 5, 1, 1, 14), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: etherReinterrupts.setStatus('mandatory') etherBufferReroutes = MibTableColumn((1, 3, 6, 1, 4, 1, 166, 4, 5, 1, 1, 15), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: etherBufferReroutes.setStatus('mandatory') etherBufferDrops = MibTableColumn((1, 3, 6, 1, 4, 1, 166, 4, 5, 1, 1, 16), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: etherBufferDrops.setStatus('mandatory') etherCollisions = MibTableColumn((1, 3, 6, 1, 4, 1, 166, 4, 5, 1, 1, 17), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: etherCollisions.setStatus('mandatory') etherDefers = MibTableColumn((1, 3, 6, 1, 4, 1, 166, 4, 5, 1, 1, 18), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: etherDefers.setStatus('mandatory') etherDMAUnderruns = MibTableColumn((1, 3, 6, 1, 4, 1, 166, 4, 5, 1, 1, 19), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: etherDMAUnderruns.setStatus('mandatory') etherMaxCollisions = MibTableColumn((1, 3, 6, 1, 4, 1, 166, 4, 5, 1, 1, 20), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: etherMaxCollisions.setStatus('mandatory') etherNoCarriers = MibTableColumn((1, 3, 6, 1, 4, 1, 166, 4, 5, 1, 1, 21), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: etherNoCarriers.setStatus('mandatory') etherNoCTSs = MibTableColumn((1, 3, 6, 1, 4, 1, 166, 4, 5, 1, 1, 22), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: etherNoCTSs.setStatus('mandatory') etherNoSQEs = MibTableColumn((1, 3, 6, 1, 4, 1, 166, 4, 5, 1, 1, 23), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: etherNoSQEs.setStatus('mandatory') mibBuilder.exportSymbols("SHIVA-ETHER-MIB", etherOutPackets=etherOutPackets, etherBufferDrops=etherBufferDrops, etherBadTransmits=etherBadTransmits, etherDefers=etherDefers, etherBcastDrops=etherBcastDrops, tEtherTable=tEtherTable, etherOverrunErrors=etherOverrunErrors, etherAlignErrors=etherAlignErrors, etherDMAUnderruns=etherDMAUnderruns, etherSpurCUActives=etherSpurCUActives, etherNoCarriers=etherNoCarriers, etherMaxCollisions=etherMaxCollisions, etherNoCTSs=etherNoCTSs, etherBufferReroutes=etherBufferReroutes, etherCollisions=etherCollisions, etherReinterrupts=etherReinterrupts, tEtherEntry=tEtherEntry, etherSpurUnknowns=etherSpurUnknowns, etherNoSQEs=etherNoSQEs, etherSpurRUReadys=etherSpurRUReadys, etherInPackets=etherInPackets, etherOversizeFrames=etherOversizeFrames, pysmiFakeCol1000=pysmiFakeCol1000, etherReceiverRestarts=etherReceiverRestarts, etherResourceErrors=etherResourceErrors, etherCRCErrors=etherCRCErrors)
(object_identifier, octet_string, integer) = mibBuilder.importSymbols('ASN1', 'ObjectIdentifier', 'OctetString', 'Integer') (named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues') (constraints_union, constraints_intersection, value_size_constraint, single_value_constraint, value_range_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ConstraintsUnion', 'ConstraintsIntersection', 'ValueSizeConstraint', 'SingleValueConstraint', 'ValueRangeConstraint') (t_ether,) = mibBuilder.importSymbols('SHIVA-MIB', 'tEther') (module_compliance, notification_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'ModuleCompliance', 'NotificationGroup') (unsigned32, time_ticks, object_identity, iso, mib_scalar, mib_table, mib_table_row, mib_table_column, gauge32, notification_type, integer32, ip_address, counter64, bits, counter32, module_identity, mib_identifier) = mibBuilder.importSymbols('SNMPv2-SMI', 'Unsigned32', 'TimeTicks', 'ObjectIdentity', 'iso', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'Gauge32', 'NotificationType', 'Integer32', 'IpAddress', 'Counter64', 'Bits', 'Counter32', 'ModuleIdentity', 'MibIdentifier') (textual_convention, display_string) = mibBuilder.importSymbols('SNMPv2-TC', 'TextualConvention', 'DisplayString') t_ether_table = mib_table((1, 3, 6, 1, 4, 1, 166, 4, 5, 1)) if mibBuilder.loadTexts: tEtherTable.setStatus('mandatory') pysmi_fake_col1000 = mib_table_column((1, 3, 6, 1, 4, 1, 166, 4, 5, 1, 1) + (1000,), integer32()) t_ether_entry = mib_table_row((1, 3, 6, 1, 4, 1, 166, 4, 5, 1, 1)).setIndexNames((0, 'SHIVA-ETHER-MIB', 'pysmiFakeCol1000')) if mibBuilder.loadTexts: tEtherEntry.setStatus('mandatory') ether_crc_errors = mib_table_column((1, 3, 6, 1, 4, 1, 166, 4, 5, 1, 1, 1), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: etherCRCErrors.setStatus('mandatory') ether_align_errors = mib_table_column((1, 3, 6, 1, 4, 1, 166, 4, 5, 1, 1, 2), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: etherAlignErrors.setStatus('mandatory') ether_resource_errors = mib_table_column((1, 3, 6, 1, 4, 1, 166, 4, 5, 1, 1, 3), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: etherResourceErrors.setStatus('mandatory') ether_overrun_errors = mib_table_column((1, 3, 6, 1, 4, 1, 166, 4, 5, 1, 1, 4), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: etherOverrunErrors.setStatus('mandatory') ether_in_packets = mib_table_column((1, 3, 6, 1, 4, 1, 166, 4, 5, 1, 1, 5), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: etherInPackets.setStatus('mandatory') ether_out_packets = mib_table_column((1, 3, 6, 1, 4, 1, 166, 4, 5, 1, 1, 6), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: etherOutPackets.setStatus('mandatory') ether_bad_transmits = mib_table_column((1, 3, 6, 1, 4, 1, 166, 4, 5, 1, 1, 7), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: etherBadTransmits.setStatus('mandatory') ether_oversize_frames = mib_table_column((1, 3, 6, 1, 4, 1, 166, 4, 5, 1, 1, 8), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: etherOversizeFrames.setStatus('mandatory') ether_spur_ru_readys = mib_table_column((1, 3, 6, 1, 4, 1, 166, 4, 5, 1, 1, 9), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: etherSpurRUReadys.setStatus('mandatory') ether_spur_cu_actives = mib_table_column((1, 3, 6, 1, 4, 1, 166, 4, 5, 1, 1, 10), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: etherSpurCUActives.setStatus('mandatory') ether_spur_unknowns = mib_table_column((1, 3, 6, 1, 4, 1, 166, 4, 5, 1, 1, 11), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: etherSpurUnknowns.setStatus('mandatory') ether_bcast_drops = mib_table_column((1, 3, 6, 1, 4, 1, 166, 4, 5, 1, 1, 12), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: etherBcastDrops.setStatus('mandatory') ether_receiver_restarts = mib_table_column((1, 3, 6, 1, 4, 1, 166, 4, 5, 1, 1, 13), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: etherReceiverRestarts.setStatus('mandatory') ether_reinterrupts = mib_table_column((1, 3, 6, 1, 4, 1, 166, 4, 5, 1, 1, 14), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: etherReinterrupts.setStatus('mandatory') ether_buffer_reroutes = mib_table_column((1, 3, 6, 1, 4, 1, 166, 4, 5, 1, 1, 15), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: etherBufferReroutes.setStatus('mandatory') ether_buffer_drops = mib_table_column((1, 3, 6, 1, 4, 1, 166, 4, 5, 1, 1, 16), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: etherBufferDrops.setStatus('mandatory') ether_collisions = mib_table_column((1, 3, 6, 1, 4, 1, 166, 4, 5, 1, 1, 17), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: etherCollisions.setStatus('mandatory') ether_defers = mib_table_column((1, 3, 6, 1, 4, 1, 166, 4, 5, 1, 1, 18), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: etherDefers.setStatus('mandatory') ether_dma_underruns = mib_table_column((1, 3, 6, 1, 4, 1, 166, 4, 5, 1, 1, 19), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: etherDMAUnderruns.setStatus('mandatory') ether_max_collisions = mib_table_column((1, 3, 6, 1, 4, 1, 166, 4, 5, 1, 1, 20), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: etherMaxCollisions.setStatus('mandatory') ether_no_carriers = mib_table_column((1, 3, 6, 1, 4, 1, 166, 4, 5, 1, 1, 21), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: etherNoCarriers.setStatus('mandatory') ether_no_ct_ss = mib_table_column((1, 3, 6, 1, 4, 1, 166, 4, 5, 1, 1, 22), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: etherNoCTSs.setStatus('mandatory') ether_no_sq_es = mib_table_column((1, 3, 6, 1, 4, 1, 166, 4, 5, 1, 1, 23), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: etherNoSQEs.setStatus('mandatory') mibBuilder.exportSymbols('SHIVA-ETHER-MIB', etherOutPackets=etherOutPackets, etherBufferDrops=etherBufferDrops, etherBadTransmits=etherBadTransmits, etherDefers=etherDefers, etherBcastDrops=etherBcastDrops, tEtherTable=tEtherTable, etherOverrunErrors=etherOverrunErrors, etherAlignErrors=etherAlignErrors, etherDMAUnderruns=etherDMAUnderruns, etherSpurCUActives=etherSpurCUActives, etherNoCarriers=etherNoCarriers, etherMaxCollisions=etherMaxCollisions, etherNoCTSs=etherNoCTSs, etherBufferReroutes=etherBufferReroutes, etherCollisions=etherCollisions, etherReinterrupts=etherReinterrupts, tEtherEntry=tEtherEntry, etherSpurUnknowns=etherSpurUnknowns, etherNoSQEs=etherNoSQEs, etherSpurRUReadys=etherSpurRUReadys, etherInPackets=etherInPackets, etherOversizeFrames=etherOversizeFrames, pysmiFakeCol1000=pysmiFakeCol1000, etherReceiverRestarts=etherReceiverRestarts, etherResourceErrors=etherResourceErrors, etherCRCErrors=etherCRCErrors)
def set_search_path(sender, **kwargs): conn = kwargs.get('connection') if conn is not None: cursor = conn.cursor() cursor.execute("SET search_path=saleor")
def set_search_path(sender, **kwargs): conn = kwargs.get('connection') if conn is not None: cursor = conn.cursor() cursor.execute('SET search_path=saleor')
def debug_report_progress(repo_ctx, msg): if repo_ctx.attr.debug: print(msg) repo_ctx.report_progress(msg) for i in range(25000000): x = 1
def debug_report_progress(repo_ctx, msg): if repo_ctx.attr.debug: print(msg) repo_ctx.report_progress(msg) for i in range(25000000): x = 1
# -*- coding: utf-8 -*- def get_normals(self, indices=[]): """Return the array of the normals coordinates. Parameters ---------- self : MeshVTK a MeshVTK object indices : list list of the points to extract (optional) Returns ------- normals: ndarray Normals coordinates """ surf = self.get_surf(indices) return surf.cell_normals
def get_normals(self, indices=[]): """Return the array of the normals coordinates. Parameters ---------- self : MeshVTK a MeshVTK object indices : list list of the points to extract (optional) Returns ------- normals: ndarray Normals coordinates """ surf = self.get_surf(indices) return surf.cell_normals
""" Time Complexity: O(1) Space Complexity: O(1) """ for number in [2, 3, 5, 7, 11, 13, 19, 23, 29]: print(number)
""" Time Complexity: O(1) Space Complexity: O(1) """ for number in [2, 3, 5, 7, 11, 13, 19, 23, 29]: print(number)
def respond(code=200, payload={}, messages=[]): return { 'status': 'ok' if int(code/100) == 2 else 'error', 'code': code, 'messages': messages, 'payload': payload, }, code
def respond(code=200, payload={}, messages=[]): return ({'status': 'ok' if int(code / 100) == 2 else 'error', 'code': code, 'messages': messages, 'payload': payload}, code)
class Puzzle: def __init__(self, grid): self.grid = grid self.empty_cells = [] def check_full(self): """ Checks if grid is full. :return: True if full, otherwise False """ for row in range(0, 9): for col in range(0, 9): if self.grid[row][col] == 0: return False return True def find_empty(self): """ Finds the coordinates of unassigned cells. :return: dictionary of row and column coordinates of empty cells """ for row in range(0, 9): for col in range(0, 9): if self.grid[row][col] == 0: coordinates = {'row': row, 'col': col} self.empty_cells.append(coordinates) def exist_row(self, num, row): """ Checks if number already exists in row. :param num: int to check :param row: row to check :return: True if exists, otherwise False """ for col in range(0, 9): if self.grid[row][col] == num: return True return False def exist_col(self, num, col): """ Checks if number already exists in column. :param num: int to check :param col: col to check :return: True if exists, otherwise False """ for row in range(0, 9): if self.grid[row][col] == num: return True return False def exist_group(self, num, start_row, start_col): """ Checks if number already exists in group (a 3x3 section of the grid). :param num: int to check :param start_row: starting row of group :param start_col: starting row of column :return: True if exists, otherwise False """ for row in range(0, 3): for col in range(0, 3): if self.grid[row + start_row][col + start_col] == num: return True return False def exist_constraints(self, num, row, col): """ Checks number against all the constraints above. :param num: int to check :param row: row to check :param col: col to check :return: True if exists in row, column, or group, otherwise False """ if row % 3 == 1: start_row = row - 1 elif row % 3 == 2: start_row = row - 2 else: start_row = row if col % 3 == 1: start_col = col - 1 elif col % 3 == 2: start_col = col - 2 else: start_col = col if self.exist_row(num, row) == True: return True if self.exist_col(num, col) == True: return True if self.exist_group(num, start_row, start_col) == True: return True return False def solve(self, iterator): """ Solves grid. :param iterator: an int, has to be with 0 :return: solved grid """ if self.check_full() == True: return True else: cur_row = self.empty_cells[iterator]['row'] cur_col = self.empty_cells[iterator]['col'] for num in range(1, 10): if self.exist_constraints(num, cur_row, cur_col) == False: self.grid[cur_row][cur_col] = num iterator += 1 if self.solve(iterator) == True: return True self.grid[cur_row][cur_col] = 0 iterator -= 1 return False def print_grid(self): """ Pretty printing. :return: a better-looking grid """ self.solve(0) for row in range(0, 9): if row % 3 == 0 and row != 0: print("-------------------------") for col in range (0, 9): if col % 3 == 0: print("|", end=' ') if col == 8: print(self.grid[row][col], end=' ') print("|", end='\n') else: print(self.grid[row][col], end=' ') print('\n')
class Puzzle: def __init__(self, grid): self.grid = grid self.empty_cells = [] def check_full(self): """ Checks if grid is full. :return: True if full, otherwise False """ for row in range(0, 9): for col in range(0, 9): if self.grid[row][col] == 0: return False return True def find_empty(self): """ Finds the coordinates of unassigned cells. :return: dictionary of row and column coordinates of empty cells """ for row in range(0, 9): for col in range(0, 9): if self.grid[row][col] == 0: coordinates = {'row': row, 'col': col} self.empty_cells.append(coordinates) def exist_row(self, num, row): """ Checks if number already exists in row. :param num: int to check :param row: row to check :return: True if exists, otherwise False """ for col in range(0, 9): if self.grid[row][col] == num: return True return False def exist_col(self, num, col): """ Checks if number already exists in column. :param num: int to check :param col: col to check :return: True if exists, otherwise False """ for row in range(0, 9): if self.grid[row][col] == num: return True return False def exist_group(self, num, start_row, start_col): """ Checks if number already exists in group (a 3x3 section of the grid). :param num: int to check :param start_row: starting row of group :param start_col: starting row of column :return: True if exists, otherwise False """ for row in range(0, 3): for col in range(0, 3): if self.grid[row + start_row][col + start_col] == num: return True return False def exist_constraints(self, num, row, col): """ Checks number against all the constraints above. :param num: int to check :param row: row to check :param col: col to check :return: True if exists in row, column, or group, otherwise False """ if row % 3 == 1: start_row = row - 1 elif row % 3 == 2: start_row = row - 2 else: start_row = row if col % 3 == 1: start_col = col - 1 elif col % 3 == 2: start_col = col - 2 else: start_col = col if self.exist_row(num, row) == True: return True if self.exist_col(num, col) == True: return True if self.exist_group(num, start_row, start_col) == True: return True return False def solve(self, iterator): """ Solves grid. :param iterator: an int, has to be with 0 :return: solved grid """ if self.check_full() == True: return True else: cur_row = self.empty_cells[iterator]['row'] cur_col = self.empty_cells[iterator]['col'] for num in range(1, 10): if self.exist_constraints(num, cur_row, cur_col) == False: self.grid[cur_row][cur_col] = num iterator += 1 if self.solve(iterator) == True: return True self.grid[cur_row][cur_col] = 0 iterator -= 1 return False def print_grid(self): """ Pretty printing. :return: a better-looking grid """ self.solve(0) for row in range(0, 9): if row % 3 == 0 and row != 0: print('-------------------------') for col in range(0, 9): if col % 3 == 0: print('|', end=' ') if col == 8: print(self.grid[row][col], end=' ') print('|', end='\n') else: print(self.grid[row][col], end=' ') print('\n')
default_app_config = 'business.staff_accounts.apps.UserManagementConfig' """ This APP is for management of users Functions:- Adding staff Users and giving them initial details -Department -Staff Type -Departmental,General Managers have predefined roles depending on the departments they can access """
default_app_config = 'business.staff_accounts.apps.UserManagementConfig' '\nThis APP is for management of users \nFunctions:-\n Adding staff Users and giving them initial details \n -Department\n -Staff Type\n -Departmental,General Managers have predefined roles depending on the departments they can access\n'
# finding least positive number # Given an array of integers, find the first missing positive integer in linear time and constant space. In other words, # find the lowest positive integer that does not exist in the array. The array can contain duplicates and negative numbers as well. # code contributed by devanshi katyal # space complexity:O(1) # time complexity:O(n) def MainFunction(arr, size): for i in range(size): if (abs(arr[i]) - 1 < size and arr[abs(arr[i]) - 1] > 0): arr[abs(arr[i]) - 1] = -arr[abs(arr[i]) - 1] for i in range(size): if (arr[i] > 0): return i + 1 return size + 1 def findpositive(arr, size): j= 0 for i in range(size): if (arr[i] <= 0): arr[i], arr[j] = arr[j], arr[i] j += 1 return MainFunction(arr[j:], size - j) arr = list(map(int, input().split(" "))) print("the smallest missing number", findpositive(arr, len(arr)))
def main_function(arr, size): for i in range(size): if abs(arr[i]) - 1 < size and arr[abs(arr[i]) - 1] > 0: arr[abs(arr[i]) - 1] = -arr[abs(arr[i]) - 1] for i in range(size): if arr[i] > 0: return i + 1 return size + 1 def findpositive(arr, size): j = 0 for i in range(size): if arr[i] <= 0: (arr[i], arr[j]) = (arr[j], arr[i]) j += 1 return main_function(arr[j:], size - j) arr = list(map(int, input().split(' '))) print('the smallest missing number', findpositive(arr, len(arr)))
def login_required(func): def not_logged_in(self, **kwargs): self.send_login_required({'signin_required': 'you need to sign in'}) return def check_user(self, **kwargs): user = self.connection.user if not user: return not_logged_in(self, **kwargs) return func(self, **kwargs) return check_user class RoutePermission(object): def test_permission(self, handler, verb, **kwargs): raise NotImplementedError("You need to implement test_permission") def permission_failed(self, handler): raise NotImplementedError("You need to implement permission_failed") class LoginRequired(RoutePermission): def __init__(self, verbs=None): self.test_against_verbs = verbs def test_permission(self, handler, verb, **kwargs): if not self.test_against_verbs: return handler.connection.user is not None if self.test_against_verbs: if verb not in self.test_against_verbs: return True user = handler.connection.user return user is not None def permission_failed(self, handler): handler.send_login_required()
def login_required(func): def not_logged_in(self, **kwargs): self.send_login_required({'signin_required': 'you need to sign in'}) return def check_user(self, **kwargs): user = self.connection.user if not user: return not_logged_in(self, **kwargs) return func(self, **kwargs) return check_user class Routepermission(object): def test_permission(self, handler, verb, **kwargs): raise not_implemented_error('You need to implement test_permission') def permission_failed(self, handler): raise not_implemented_error('You need to implement permission_failed') class Loginrequired(RoutePermission): def __init__(self, verbs=None): self.test_against_verbs = verbs def test_permission(self, handler, verb, **kwargs): if not self.test_against_verbs: return handler.connection.user is not None if self.test_against_verbs: if verb not in self.test_against_verbs: return True user = handler.connection.user return user is not None def permission_failed(self, handler): handler.send_login_required()
# C.O.R.S. cors_origins = [ "http://localhost", "http://localhost:8080", "http://localhost:3000", # Production Client on Vercel "https://twitter-clone.programmertutor.com", "https://www.twitter-clone.programmertutor.com", "https://twitter.dericfagnan.com", "https://www.twitter.dericfagnan.com", # Websocket Origins "ws://localhost", "wss://localhost", "ws://localhost:8080", "wss://localhost:8080", "ws://twitter-clone.programmertutor.com", "ws://www.twitter-clone.programmertutor.com", "wss://twitter-clone.programmertutor.com", "wss://www.twitter-clone.programmertutor.com", "ws://twitter.dericfagnan.com", "ws://www.twitter.dericfagnan.com", "wss://twitter.dericfagnan.com", "wss://www.twitter.dericfagnan.com", ]
cors_origins = ['http://localhost', 'http://localhost:8080', 'http://localhost:3000', 'https://twitter-clone.programmertutor.com', 'https://www.twitter-clone.programmertutor.com', 'https://twitter.dericfagnan.com', 'https://www.twitter.dericfagnan.com', 'ws://localhost', 'wss://localhost', 'ws://localhost:8080', 'wss://localhost:8080', 'ws://twitter-clone.programmertutor.com', 'ws://www.twitter-clone.programmertutor.com', 'wss://twitter-clone.programmertutor.com', 'wss://www.twitter-clone.programmertutor.com', 'ws://twitter.dericfagnan.com', 'ws://www.twitter.dericfagnan.com', 'wss://twitter.dericfagnan.com', 'wss://www.twitter.dericfagnan.com']
""" Created on Saturday, November 02, 2019 11:00:46 IST @author: Saurabh Ghanekar """ ip = input("Enter ip adddress: ") firstq1 = "" flag = 0 for i in range(len(ip)): if ip[i] == ".": firstqs = ip[:i + 1] break for i in range(len(ip)): if ip[i] == ".": firsths = ip[:i + 1] flag += 1 if flag == 2: break firstq = int(firstqs[:len(firstqs) - 1]) class_ = "" if firstq >= 1 and firstq <= 126: print("Class A") class_ = "A" elif firstq >= 128 and firstq <= 191: print("Class B") class_ = "B" elif firstq >= 192 and firstq <= 223: print("Class C") class_ = "C" elif firstq > 223: print("Out of range") subnet_mask = "" if class_ == "A": subnet_mask = "255.0.0.0" elif class_ == "B": subnet_mask = "255.255.0.0" elif class_ == "C": subnet_mask = "255.255.255.0" print("Subnet mask is=", subnet_mask) if class_ == "A": print("After bitwise adding=", firstqs + "0.0.0") elif class_ == "B": print("After bitwise adding=", ip[:len(firstqs)+1] + ".0.0") elif class_ == "C": print("After bitwise adding=", firsths + "0.0") subnet_value = int(input("Enter subnet value(1,2,3,4,5,6,7,8)= ")) if class_ == "A": sembin = "255." + "1"*subnet_value + "0"*(8 - subnet_value) + ".0.0" dec = int("1"*subnet_value + "0"*(8 - subnet_value), 2) print("255." + str(dec) + ".0.0") elif class_ == "B": sembin = "255.255." + "1"*subnet_value+"0"*(8 - subnet_value) + ".0" dec = int("1"*subnet_value + "0"*(8 - subnet_value), 2) print("255.255." + str(dec) + ".0") elif class_ == "C": sembin = "255.255.255." + "1"*subnet_value + "0"*(8 - subnet_value) dec = int("1"*subnet_value + "0"*(8 - subnet_value), 2) print("255.255.255." + str(dec))
""" Created on Saturday, November 02, 2019 11:00:46 IST @author: Saurabh Ghanekar """ ip = input('Enter ip adddress: ') firstq1 = '' flag = 0 for i in range(len(ip)): if ip[i] == '.': firstqs = ip[:i + 1] break for i in range(len(ip)): if ip[i] == '.': firsths = ip[:i + 1] flag += 1 if flag == 2: break firstq = int(firstqs[:len(firstqs) - 1]) class_ = '' if firstq >= 1 and firstq <= 126: print('Class A') class_ = 'A' elif firstq >= 128 and firstq <= 191: print('Class B') class_ = 'B' elif firstq >= 192 and firstq <= 223: print('Class C') class_ = 'C' elif firstq > 223: print('Out of range') subnet_mask = '' if class_ == 'A': subnet_mask = '255.0.0.0' elif class_ == 'B': subnet_mask = '255.255.0.0' elif class_ == 'C': subnet_mask = '255.255.255.0' print('Subnet mask is=', subnet_mask) if class_ == 'A': print('After bitwise adding=', firstqs + '0.0.0') elif class_ == 'B': print('After bitwise adding=', ip[:len(firstqs) + 1] + '.0.0') elif class_ == 'C': print('After bitwise adding=', firsths + '0.0') subnet_value = int(input('Enter subnet value(1,2,3,4,5,6,7,8)= ')) if class_ == 'A': sembin = '255.' + '1' * subnet_value + '0' * (8 - subnet_value) + '.0.0' dec = int('1' * subnet_value + '0' * (8 - subnet_value), 2) print('255.' + str(dec) + '.0.0') elif class_ == 'B': sembin = '255.255.' + '1' * subnet_value + '0' * (8 - subnet_value) + '.0' dec = int('1' * subnet_value + '0' * (8 - subnet_value), 2) print('255.255.' + str(dec) + '.0') elif class_ == 'C': sembin = '255.255.255.' + '1' * subnet_value + '0' * (8 - subnet_value) dec = int('1' * subnet_value + '0' * (8 - subnet_value), 2) print('255.255.255.' + str(dec))
class Job: def __init__(self, title, link, date, job_id): ''' This class holds job information and attributes ''' self.title = title self.link = link self.date = date self.job_id = job_id self.applied = False self.old = False self.new = True self.desc = ''
class Job: def __init__(self, title, link, date, job_id): """ This class holds job information and attributes """ self.title = title self.link = link self.date = date self.job_id = job_id self.applied = False self.old = False self.new = True self.desc = ''
{ "cells": [ { "cell_type": "code", "execution_count": null, "id": "f9af1484", "metadata": {}, "outputs": [], "source": [ "# ---------------------- STEP 2: Climate APP\n", "\n", "from flask import Flask, json, jsonify\n", "import datetime as dt\n", "\n", "import sqlalchemy\n", "from sqlalchemy.ext.automap import automap_base\n", "from sqlalchemy.orm import Session\n", "from sqlalchemy import create_engine, func\n", "from sqlalchemy import inspect\n", "\n", "engine = create_engine(\"sqlite:///./Resources/hawaii.sqlite\", connect_args={'check_same_thread': False})\n", "# reflect an existing database into a new model\n", "Base = automap_base()\n", "# reflect the tables\n", "Base.prepare(engine, reflect=True)\n", "\n", "# Save references to each table\n", "Measurement = Base.classes.measurement\n", "Station = Base.classes.station\n", "session = Session(engine)\n", "\n", "app = Flask(__name__) # the name of the file & the object (double usage)\n", "\n", "# List all routes that are available.\n", "@app.route(\"/\")\n", "def home():\n", " print(\"In & Out of Home section.\")\n", " return (\n", " f\"Welcome to the Climate API!<br/>\"\n", " f\"Available Routes:<br/>\"\n", " f\"/api/v1.0/precipitation<br/>\"\n", " f\"/api/v1.0/stations<br/>\"\n", " f\"/api/v1.0/tobs<br/>\"\n", " f\"/api/v1.0/2016-01-01/<br/>\"\n", " f\"/api/v1.0/2016-01-01/2016-12-31/\"\n", " )\n", "\n", "# Return the JSON representation of your dictionary\n", "@app.route('/api/v1.0/precipitation/')\n", "def precipitation():\n", " print(\"In Precipitation section.\")\n", " \n", " last_date = session.query(Measurement.date).order_by(Measurement.date.desc()).first().date\n", " last_year = dt.datetime.strptime(last_date, '%Y-%m-%d') - dt.timedelta(days=365)\n", "\n", " rain_results = session.query(Measurement.date, Measurement.prcp).\\\n", " filter(Measurement.date >= last_year).\\\n", " order_by(Measurement.date).all()\n", "\n", " p_dict = dict(rain_results)\n", " print(f\"Results for Precipitation - {p_dict}\")\n", " print(\"Out of Precipitation section.\")\n", " return jsonify(p_dict) \n", "\n", "# Return a JSON-list of stations from the dataset.\n", "@app.route('/api/v1.0/stations/')\n", "def stations():\n", " print(\"In station section.\")\n", " \n", " station_list = session.query(Station.station)\\\n", " .order_by(Station.station).all() \n", " print()\n", " print(\"Station List:\") \n", " for row in station_list:\n", " print (row[0])\n", " print(\"Out of Station section.\")\n", " return jsonify(station_list)\n", "\n", "# Return a JSON-list of Temperature Observations from the dataset.\n", "@app.route('/api/v1.0/tobs/')\n", "def tobs():\n", " print(\"In TOBS section.\")\n", " \n", " last_date = session.query(Measurement.date).order_by(Measurement.date.desc()).first().date\n", " last_year = dt.datetime.strptime(last_date, '%Y-%m-%d') - dt.timedelta(days=365)\n", "\n", " temp_obs = session.query(Measurement.date, Measurement.tobs)\\\n", " .filter(Measurement.date >= last_year)\\\n", " .order_by(Measurement.date).all()\n", " print()\n", " print(\"Temperature Results for All Stations\")\n", " print(temp_obs)\n", " print(\"Out of TOBS section.\")\n", " return jsonify(temp_obs)\n", "\n", "# Return a JSON list of the minimum temperature, the average temperature, and the max temperature for a given start date\n", "@app.route('/api/v1.0/<start_date>/')\n", "def calc_temps_start(start_date):\n", " print(\"In start date section.\")\n", " print(start_date)\n", " \n", " select = [func.min(Measurement.tobs), func.avg(Measurement.tobs), func.max(Measurement.tobs)]\n", " result_temp = session.query(*select).\\\n", " filter(Measurement.date >= start_date).all()\n", " print()\n", " print(f\"Calculated temp for start date {start_date}\")\n", " print(result_temp)\n", " print(\"Out of start date section.\")\n", " return jsonify(result_temp)\n", "\n", "# Return a JSON list of the minimum temperature, the average temperature, and the max temperature for a given start-end range.\n", "@app.route('/api/v1.0/<start_date>/<end_date>/')\n", "def calc_temps_start_end(start_date, end_date):\n", " print(\"In start & end date section.\")\n", " \n", " select = [func.min(Measurement.tobs), func.avg(Measurement.tobs), func.max(Measurement.tobs)]\n", " result_temp = session.query(*select).\\\n", " filter(Measurement.date >= start_date).filter(Measurement.date <= end_date).all()\n", " print()\n", " print(f\"Calculated temp for start date {start_date} & end date {end_date}\")\n", " print(result_temp)\n", " print(\"Out of start & end date section.\")\n", " return jsonify(result_temp)\n", "\n", "if __name__ == \"__main__\":\n", " app.run(debug=True)" ] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.8.8" } }, "nbformat": 4, "nbformat_minor": 5 }
{'cells': [{'cell_type': 'code', 'execution_count': null, 'id': 'f9af1484', 'metadata': {}, 'outputs': [], 'source': ['# ---------------------- STEP 2: Climate APP\n', '\n', 'from flask import Flask, json, jsonify\n', 'import datetime as dt\n', '\n', 'import sqlalchemy\n', 'from sqlalchemy.ext.automap import automap_base\n', 'from sqlalchemy.orm import Session\n', 'from sqlalchemy import create_engine, func\n', 'from sqlalchemy import inspect\n', '\n', 'engine = create_engine("sqlite:///./Resources/hawaii.sqlite", connect_args={\'check_same_thread\': False})\n', '# reflect an existing database into a new model\n', 'Base = automap_base()\n', '# reflect the tables\n', 'Base.prepare(engine, reflect=True)\n', '\n', '# Save references to each table\n', 'Measurement = Base.classes.measurement\n', 'Station = Base.classes.station\n', 'session = Session(engine)\n', '\n', 'app = Flask(__name__) # the name of the file & the object (double usage)\n', '\n', '# List all routes that are available.\n', '@app.route("/")\n', 'def home():\n', ' print("In & Out of Home section.")\n', ' return (\n', ' f"Welcome to the Climate API!<br/>"\n', ' f"Available Routes:<br/>"\n', ' f"/api/v1.0/precipitation<br/>"\n', ' f"/api/v1.0/stations<br/>"\n', ' f"/api/v1.0/tobs<br/>"\n', ' f"/api/v1.0/2016-01-01/<br/>"\n', ' f"/api/v1.0/2016-01-01/2016-12-31/"\n', ' )\n', '\n', '# Return the JSON representation of your dictionary\n', "@app.route('/api/v1.0/precipitation/')\n", 'def precipitation():\n', ' print("In Precipitation section.")\n', ' \n', ' last_date = session.query(Measurement.date).order_by(Measurement.date.desc()).first().date\n', " last_year = dt.datetime.strptime(last_date, '%Y-%m-%d') - dt.timedelta(days=365)\n", '\n', ' rain_results = session.query(Measurement.date, Measurement.prcp).\\\n', ' filter(Measurement.date >= last_year).\\\n', ' order_by(Measurement.date).all()\n', '\n', ' p_dict = dict(rain_results)\n', ' print(f"Results for Precipitation - {p_dict}")\n', ' print("Out of Precipitation section.")\n', ' return jsonify(p_dict) \n', '\n', '# Return a JSON-list of stations from the dataset.\n', "@app.route('/api/v1.0/stations/')\n", 'def stations():\n', ' print("In station section.")\n', ' \n', ' station_list = session.query(Station.station)\\\n', ' .order_by(Station.station).all() \n', ' print()\n', ' print("Station List:") \n', ' for row in station_list:\n', ' print (row[0])\n', ' print("Out of Station section.")\n', ' return jsonify(station_list)\n', '\n', '# Return a JSON-list of Temperature Observations from the dataset.\n', "@app.route('/api/v1.0/tobs/')\n", 'def tobs():\n', ' print("In TOBS section.")\n', ' \n', ' last_date = session.query(Measurement.date).order_by(Measurement.date.desc()).first().date\n', " last_year = dt.datetime.strptime(last_date, '%Y-%m-%d') - dt.timedelta(days=365)\n", '\n', ' temp_obs = session.query(Measurement.date, Measurement.tobs)\\\n', ' .filter(Measurement.date >= last_year)\\\n', ' .order_by(Measurement.date).all()\n', ' print()\n', ' print("Temperature Results for All Stations")\n', ' print(temp_obs)\n', ' print("Out of TOBS section.")\n', ' return jsonify(temp_obs)\n', '\n', '# Return a JSON list of the minimum temperature, the average temperature, and the max temperature for a given start date\n', "@app.route('/api/v1.0/<start_date>/')\n", 'def calc_temps_start(start_date):\n', ' print("In start date section.")\n', ' print(start_date)\n', ' \n', ' select = [func.min(Measurement.tobs), func.avg(Measurement.tobs), func.max(Measurement.tobs)]\n', ' result_temp = session.query(*select).\\\n', ' filter(Measurement.date >= start_date).all()\n', ' print()\n', ' print(f"Calculated temp for start date {start_date}")\n', ' print(result_temp)\n', ' print("Out of start date section.")\n', ' return jsonify(result_temp)\n', '\n', '# Return a JSON list of the minimum temperature, the average temperature, and the max temperature for a given start-end range.\n', "@app.route('/api/v1.0/<start_date>/<end_date>/')\n", 'def calc_temps_start_end(start_date, end_date):\n', ' print("In start & end date section.")\n', ' \n', ' select = [func.min(Measurement.tobs), func.avg(Measurement.tobs), func.max(Measurement.tobs)]\n', ' result_temp = session.query(*select).\\\n', ' filter(Measurement.date >= start_date).filter(Measurement.date <= end_date).all()\n', ' print()\n', ' print(f"Calculated temp for start date {start_date} & end date {end_date}")\n', ' print(result_temp)\n', ' print("Out of start & end date section.")\n', ' return jsonify(result_temp)\n', '\n', 'if __name__ == "__main__":\n', ' app.run(debug=True)']}], 'metadata': {'kernelspec': {'display_name': 'Python 3', 'language': 'python', 'name': 'python3'}, 'language_info': {'codemirror_mode': {'name': 'ipython', 'version': 3}, 'file_extension': '.py', 'mimetype': 'text/x-python', 'name': 'python', 'nbconvert_exporter': 'python', 'pygments_lexer': 'ipython3', 'version': '3.8.8'}}, 'nbformat': 4, 'nbformat_minor': 5}
# Add your import statements here # Add any utility functions here def rel_docs(query_id,qrels): j=[item['id'] for item in qrels if item['query_num']==str(query_id)] return j def rel_score_as_dict_for_query(query_id,qrels): docs_score_dict={int(item['id']):int(item['position']) for item in qrels if int(item['query_num'])==int(query_id)} return docs_score_dict def rel_score_for_query(query_id,qrels): score=[int(item['position']) for item in qrels if int(item['query_num'])==int(query_id)] i_d=[int(item['id']) for item in qrels if int(item['query_num'])==int(query_id)] score_id=list(map(lambda x,y: [x,y],score,i_d)) return score_id
def rel_docs(query_id, qrels): j = [item['id'] for item in qrels if item['query_num'] == str(query_id)] return j def rel_score_as_dict_for_query(query_id, qrels): docs_score_dict = {int(item['id']): int(item['position']) for item in qrels if int(item['query_num']) == int(query_id)} return docs_score_dict def rel_score_for_query(query_id, qrels): score = [int(item['position']) for item in qrels if int(item['query_num']) == int(query_id)] i_d = [int(item['id']) for item in qrels if int(item['query_num']) == int(query_id)] score_id = list(map(lambda x, y: [x, y], score, i_d)) return score_id
class MockData: def __init__(self): self.data = [ 'ATGCAT', 'ATGGGT', 'ATGAAT', ] def get_row(self, i): return self.sequences[i]
class Mockdata: def __init__(self): self.data = ['ATGCAT', 'ATGGGT', 'ATGAAT'] def get_row(self, i): return self.sequences[i]
#!/usr/bin/env python # -*- coding: utf-8 -*- class PodiumUser(object): """ Object that represents a particular User. **Attributes:** **user_id** (int): User id **uri** (string): URI for the User. **username** (string): The User's username. **description** (string): The User's description. **avatar_url** (string): User's avatar image url. **links** (list): 3rd party links for the user. **friendships_uri** (string): URI to friends list. **followers_uri** (string): URI to followers list. **friendship_uri** (string): If this User has been friended **events_uri** (string): URI to events for this user **venues_uri** (string): URI to venues this user particiated at by the user this attr will have a value, otherwise None. Defaults to None. """ def __init__(self, user_id, uri, username, description, avatar_url, profile_image_url, links, friendships_uri, followers_uri, friendship_uri, events_uri, venues_uri): self.user_id = user_id self.uri = uri self.username = username self.description = description self.avatar_url = avatar_url self.profile_image_url = profile_image_url self.links = links self.friendships_uri = friendships_uri self.followers_uri = followers_uri self.friendship_uri = friendship_uri self.events_uri = events_uri self.venues_uri = venues_uri def get_user_from_json(json): """ Returns a PodiumUser object from the json dict received from podium api. Args: json (dict): Dict of data from REST api Return: PodiumUser: The PodiumUser object for the data. """ return PodiumUser(json['id'], json['URI'], json['username'], json['description'], json['avatar_url'], json['profile_image_url'], json['links'], json['friendships_uri'], json['followers_uri'], json.get("friendship_uri", None), json['events_uri'], json['venues_uri'] )
class Podiumuser(object): """ Object that represents a particular User. **Attributes:** **user_id** (int): User id **uri** (string): URI for the User. **username** (string): The User's username. **description** (string): The User's description. **avatar_url** (string): User's avatar image url. **links** (list): 3rd party links for the user. **friendships_uri** (string): URI to friends list. **followers_uri** (string): URI to followers list. **friendship_uri** (string): If this User has been friended **events_uri** (string): URI to events for this user **venues_uri** (string): URI to venues this user particiated at by the user this attr will have a value, otherwise None. Defaults to None. """ def __init__(self, user_id, uri, username, description, avatar_url, profile_image_url, links, friendships_uri, followers_uri, friendship_uri, events_uri, venues_uri): self.user_id = user_id self.uri = uri self.username = username self.description = description self.avatar_url = avatar_url self.profile_image_url = profile_image_url self.links = links self.friendships_uri = friendships_uri self.followers_uri = followers_uri self.friendship_uri = friendship_uri self.events_uri = events_uri self.venues_uri = venues_uri def get_user_from_json(json): """ Returns a PodiumUser object from the json dict received from podium api. Args: json (dict): Dict of data from REST api Return: PodiumUser: The PodiumUser object for the data. """ return podium_user(json['id'], json['URI'], json['username'], json['description'], json['avatar_url'], json['profile_image_url'], json['links'], json['friendships_uri'], json['followers_uri'], json.get('friendship_uri', None), json['events_uri'], json['venues_uri'])
class Arc(object): """ Python representation of a constraint arc """ def __init__(self, left, right): """ Since the arc is a directed edge, the left and right components of the arc are initalized where the arc travels from left to right. """ self.left = left self.right = right self.constraints = list() def add_constraint(self, constraint): """ Adds a constraint to the arc. The constraint is a function that takes two node values and returns a boolean result """ self.constraints.append(constraint) return self def check_constraints(self, i, j): """ Returns true if the all of the constraints are satisfied for i and j being node values not variable instances """ for constraint in self.constraints: if not constraint(i, j): return False return True def get_left(self): """ Gets the left side of the arc """ return self.left def get_right(self): """ Gets the right side of the arc """ return self.right def get_constraints(self): """ Gets the list of constraints """ return self.constraints def revise(self): """ Revises the arc where the right variable has already been assigned a value, this function prunes the domain of the left variable to keep consistency. Returns true if there is a consistent pruned domain for the left variable. """ pd = list() for d in self.left.get_pruned_domain(): unary_check = self.left.check_constraints(d) arc_check = self.check_constraints(d, self.right.get_value()) if unary_check and arc_check: pd.append(d) if len(pd) > 0: self.left.set_pruned_domain(pd) return True else: return False
class Arc(object): """ Python representation of a constraint arc """ def __init__(self, left, right): """ Since the arc is a directed edge, the left and right components of the arc are initalized where the arc travels from left to right. """ self.left = left self.right = right self.constraints = list() def add_constraint(self, constraint): """ Adds a constraint to the arc. The constraint is a function that takes two node values and returns a boolean result """ self.constraints.append(constraint) return self def check_constraints(self, i, j): """ Returns true if the all of the constraints are satisfied for i and j being node values not variable instances """ for constraint in self.constraints: if not constraint(i, j): return False return True def get_left(self): """ Gets the left side of the arc """ return self.left def get_right(self): """ Gets the right side of the arc """ return self.right def get_constraints(self): """ Gets the list of constraints """ return self.constraints def revise(self): """ Revises the arc where the right variable has already been assigned a value, this function prunes the domain of the left variable to keep consistency. Returns true if there is a consistent pruned domain for the left variable. """ pd = list() for d in self.left.get_pruned_domain(): unary_check = self.left.check_constraints(d) arc_check = self.check_constraints(d, self.right.get_value()) if unary_check and arc_check: pd.append(d) if len(pd) > 0: self.left.set_pruned_domain(pd) return True else: return False
# # PySNMP MIB module ONEACCESS-DOT11-MIB (http://snmplabs.com/pysmi) # ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/ONEACCESS-DOT11-MIB # Produced by pysmi-0.3.4 at Mon Apr 29 20:25:00 2019 # On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4 # Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15) # ObjectIdentifier, Integer, OctetString = mibBuilder.importSymbols("ASN1", "ObjectIdentifier", "Integer", "OctetString") NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues") ValueRangeConstraint, ConstraintsIntersection, ConstraintsUnion, ValueSizeConstraint, SingleValueConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ValueRangeConstraint", "ConstraintsIntersection", "ConstraintsUnion", "ValueSizeConstraint", "SingleValueConstraint") ifIndex, = mibBuilder.importSymbols("IF-MIB", "ifIndex") oacRequirements, oacMIBModules, oacExpIMDot11 = mibBuilder.importSymbols("ONEACCESS-GLOBAL-REG", "oacRequirements", "oacMIBModules", "oacExpIMDot11") ObjectGroup, NotificationGroup, ModuleCompliance = mibBuilder.importSymbols("SNMPv2-CONF", "ObjectGroup", "NotificationGroup", "ModuleCompliance") ModuleIdentity, MibScalar, MibTable, MibTableRow, MibTableColumn, IpAddress, iso, Counter32, Gauge32, MibIdentifier, Unsigned32, Counter64, Integer32, NotificationType, TimeTicks, ObjectIdentity, Bits = mibBuilder.importSymbols("SNMPv2-SMI", "ModuleIdentity", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "IpAddress", "iso", "Counter32", "Gauge32", "MibIdentifier", "Unsigned32", "Counter64", "Integer32", "NotificationType", "TimeTicks", "ObjectIdentity", "Bits") DisplayString, TextualConvention, MacAddress = mibBuilder.importSymbols("SNMPv2-TC", "DisplayString", "TextualConvention", "MacAddress") oacDot11MIBModule = ModuleIdentity((1, 3, 6, 1, 4, 1, 13191, 1, 100, 900)) oacDot11MIBModule.setRevisions(('2011-10-27 00:00', '2010-07-08 00:01',)) if mibBuilder.loadTexts: oacDot11MIBModule.setLastUpdated('201110270000Z') if mibBuilder.loadTexts: oacDot11MIBModule.setOrganization(' OneAccess ') class InterfaceType(TextualConvention, Integer32): status = 'current' subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2)) namedValues = NamedValues(("mainInterface", 1), ("subInterface", 2)) oacExpIMDot11Objects = MibIdentifier((1, 3, 6, 1, 4, 1, 13191, 10, 3, 8, 1)) oacExpIMDot11InterfaceTable = MibTable((1, 3, 6, 1, 4, 1, 13191, 10, 3, 8, 1, 1), ) if mibBuilder.loadTexts: oacExpIMDot11InterfaceTable.setStatus('current') oacExpIMDot11InterfaceEntry = MibTableRow((1, 3, 6, 1, 4, 1, 13191, 10, 3, 8, 1, 1, 1), ).setIndexNames((0, "IF-MIB", "ifIndex")) if mibBuilder.loadTexts: oacExpIMDot11InterfaceEntry.setStatus('current') oacExpIMDot11EntryType = MibTableColumn((1, 3, 6, 1, 4, 1, 13191, 10, 3, 8, 1, 1, 1, 1), InterfaceType()).setMaxAccess("readonly") if mibBuilder.loadTexts: oacExpIMDot11EntryType.setStatus('current') oacExpIMDot11MACAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 13191, 10, 3, 8, 1, 1, 1, 2), MacAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: oacExpIMDot11MACAddress.setStatus('current') oacExpIMDot11SSID = MibTableColumn((1, 3, 6, 1, 4, 1, 13191, 10, 3, 8, 1, 1, 1, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 32))).setMaxAccess("readonly") if mibBuilder.loadTexts: oacExpIMDot11SSID.setStatus('current') oacExpIMDot11AssociatedStations = MibTableColumn((1, 3, 6, 1, 4, 1, 13191, 10, 3, 8, 1, 1, 1, 4), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: oacExpIMDot11AssociatedStations.setStatus('current') oacExpIMDot11Conformance = MibIdentifier((1, 3, 6, 1, 4, 1, 13191, 5, 900)) oacExpIMDot11Groups = MibIdentifier((1, 3, 6, 1, 4, 1, 13191, 5, 900, 1)) oacExpIMDot11Compliances = MibIdentifier((1, 3, 6, 1, 4, 1, 13191, 5, 900, 2)) oacExpIMDot11Compliance = ModuleCompliance((1, 3, 6, 1, 4, 1, 13191, 5, 900, 2, 1)).setObjects(("ONEACCESS-DOT11-MIB", "oacExpIMDot11GeneralGroup")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): oacExpIMDot11Compliance = oacExpIMDot11Compliance.setStatus('current') oacExpIMDot11GeneralGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 13191, 5, 900, 1, 1)).setObjects(("ONEACCESS-DOT11-MIB", "oacExpIMDot11EntryType"), ("ONEACCESS-DOT11-MIB", "oacExpIMDot11MACAddress"), ("ONEACCESS-DOT11-MIB", "oacExpIMDot11SSID"), ("ONEACCESS-DOT11-MIB", "oacExpIMDot11AssociatedStations")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): oacExpIMDot11GeneralGroup = oacExpIMDot11GeneralGroup.setStatus('current') mibBuilder.exportSymbols("ONEACCESS-DOT11-MIB", PYSNMP_MODULE_ID=oacDot11MIBModule, InterfaceType=InterfaceType, oacExpIMDot11SSID=oacExpIMDot11SSID, oacExpIMDot11Conformance=oacExpIMDot11Conformance, oacExpIMDot11MACAddress=oacExpIMDot11MACAddress, oacExpIMDot11InterfaceTable=oacExpIMDot11InterfaceTable, oacExpIMDot11Groups=oacExpIMDot11Groups, oacDot11MIBModule=oacDot11MIBModule, oacExpIMDot11AssociatedStations=oacExpIMDot11AssociatedStations, oacExpIMDot11EntryType=oacExpIMDot11EntryType, oacExpIMDot11Compliance=oacExpIMDot11Compliance, oacExpIMDot11Objects=oacExpIMDot11Objects, oacExpIMDot11InterfaceEntry=oacExpIMDot11InterfaceEntry, oacExpIMDot11Compliances=oacExpIMDot11Compliances, oacExpIMDot11GeneralGroup=oacExpIMDot11GeneralGroup)
(object_identifier, integer, octet_string) = mibBuilder.importSymbols('ASN1', 'ObjectIdentifier', 'Integer', 'OctetString') (named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues') (value_range_constraint, constraints_intersection, constraints_union, value_size_constraint, single_value_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ValueRangeConstraint', 'ConstraintsIntersection', 'ConstraintsUnion', 'ValueSizeConstraint', 'SingleValueConstraint') (if_index,) = mibBuilder.importSymbols('IF-MIB', 'ifIndex') (oac_requirements, oac_mib_modules, oac_exp_im_dot11) = mibBuilder.importSymbols('ONEACCESS-GLOBAL-REG', 'oacRequirements', 'oacMIBModules', 'oacExpIMDot11') (object_group, notification_group, module_compliance) = mibBuilder.importSymbols('SNMPv2-CONF', 'ObjectGroup', 'NotificationGroup', 'ModuleCompliance') (module_identity, mib_scalar, mib_table, mib_table_row, mib_table_column, ip_address, iso, counter32, gauge32, mib_identifier, unsigned32, counter64, integer32, notification_type, time_ticks, object_identity, bits) = mibBuilder.importSymbols('SNMPv2-SMI', 'ModuleIdentity', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'IpAddress', 'iso', 'Counter32', 'Gauge32', 'MibIdentifier', 'Unsigned32', 'Counter64', 'Integer32', 'NotificationType', 'TimeTicks', 'ObjectIdentity', 'Bits') (display_string, textual_convention, mac_address) = mibBuilder.importSymbols('SNMPv2-TC', 'DisplayString', 'TextualConvention', 'MacAddress') oac_dot11_mib_module = module_identity((1, 3, 6, 1, 4, 1, 13191, 1, 100, 900)) oacDot11MIBModule.setRevisions(('2011-10-27 00:00', '2010-07-08 00:01')) if mibBuilder.loadTexts: oacDot11MIBModule.setLastUpdated('201110270000Z') if mibBuilder.loadTexts: oacDot11MIBModule.setOrganization(' OneAccess ') class Interfacetype(TextualConvention, Integer32): status = 'current' subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2)) named_values = named_values(('mainInterface', 1), ('subInterface', 2)) oac_exp_im_dot11_objects = mib_identifier((1, 3, 6, 1, 4, 1, 13191, 10, 3, 8, 1)) oac_exp_im_dot11_interface_table = mib_table((1, 3, 6, 1, 4, 1, 13191, 10, 3, 8, 1, 1)) if mibBuilder.loadTexts: oacExpIMDot11InterfaceTable.setStatus('current') oac_exp_im_dot11_interface_entry = mib_table_row((1, 3, 6, 1, 4, 1, 13191, 10, 3, 8, 1, 1, 1)).setIndexNames((0, 'IF-MIB', 'ifIndex')) if mibBuilder.loadTexts: oacExpIMDot11InterfaceEntry.setStatus('current') oac_exp_im_dot11_entry_type = mib_table_column((1, 3, 6, 1, 4, 1, 13191, 10, 3, 8, 1, 1, 1, 1), interface_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: oacExpIMDot11EntryType.setStatus('current') oac_exp_im_dot11_mac_address = mib_table_column((1, 3, 6, 1, 4, 1, 13191, 10, 3, 8, 1, 1, 1, 2), mac_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: oacExpIMDot11MACAddress.setStatus('current') oac_exp_im_dot11_ssid = mib_table_column((1, 3, 6, 1, 4, 1, 13191, 10, 3, 8, 1, 1, 1, 3), octet_string().subtype(subtypeSpec=value_size_constraint(0, 32))).setMaxAccess('readonly') if mibBuilder.loadTexts: oacExpIMDot11SSID.setStatus('current') oac_exp_im_dot11_associated_stations = mib_table_column((1, 3, 6, 1, 4, 1, 13191, 10, 3, 8, 1, 1, 1, 4), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: oacExpIMDot11AssociatedStations.setStatus('current') oac_exp_im_dot11_conformance = mib_identifier((1, 3, 6, 1, 4, 1, 13191, 5, 900)) oac_exp_im_dot11_groups = mib_identifier((1, 3, 6, 1, 4, 1, 13191, 5, 900, 1)) oac_exp_im_dot11_compliances = mib_identifier((1, 3, 6, 1, 4, 1, 13191, 5, 900, 2)) oac_exp_im_dot11_compliance = module_compliance((1, 3, 6, 1, 4, 1, 13191, 5, 900, 2, 1)).setObjects(('ONEACCESS-DOT11-MIB', 'oacExpIMDot11GeneralGroup')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): oac_exp_im_dot11_compliance = oacExpIMDot11Compliance.setStatus('current') oac_exp_im_dot11_general_group = object_group((1, 3, 6, 1, 4, 1, 13191, 5, 900, 1, 1)).setObjects(('ONEACCESS-DOT11-MIB', 'oacExpIMDot11EntryType'), ('ONEACCESS-DOT11-MIB', 'oacExpIMDot11MACAddress'), ('ONEACCESS-DOT11-MIB', 'oacExpIMDot11SSID'), ('ONEACCESS-DOT11-MIB', 'oacExpIMDot11AssociatedStations')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): oac_exp_im_dot11_general_group = oacExpIMDot11GeneralGroup.setStatus('current') mibBuilder.exportSymbols('ONEACCESS-DOT11-MIB', PYSNMP_MODULE_ID=oacDot11MIBModule, InterfaceType=InterfaceType, oacExpIMDot11SSID=oacExpIMDot11SSID, oacExpIMDot11Conformance=oacExpIMDot11Conformance, oacExpIMDot11MACAddress=oacExpIMDot11MACAddress, oacExpIMDot11InterfaceTable=oacExpIMDot11InterfaceTable, oacExpIMDot11Groups=oacExpIMDot11Groups, oacDot11MIBModule=oacDot11MIBModule, oacExpIMDot11AssociatedStations=oacExpIMDot11AssociatedStations, oacExpIMDot11EntryType=oacExpIMDot11EntryType, oacExpIMDot11Compliance=oacExpIMDot11Compliance, oacExpIMDot11Objects=oacExpIMDot11Objects, oacExpIMDot11InterfaceEntry=oacExpIMDot11InterfaceEntry, oacExpIMDot11Compliances=oacExpIMDot11Compliances, oacExpIMDot11GeneralGroup=oacExpIMDot11GeneralGroup)
class Decipher: def __init__(self, data='', password=''): self.data = data self.password = password self.result = False def decipher_password(self): # For authentication(Deciphering your password).. helper = self.data.split('*/*/') count, separator, compare, helper_list = 1, '', '', [] for i in helper[0]: if i == '%': helper_list.append(int(separator) - count) count += 1 separator = '' continue separator += i for i in helper_list: compare += chr(i) if compare == self.password: self.result = True return self.result, helper def decipher_message(self, helper): # Deciphering your message helper_list = [] helper_msg = helper[1].split('@*@') message = str(helper_msg[0]) size = int(helper_msg[1]) separator, deciphered = '', '' for i in message: if i == '@': helper_list.append(int(separator) - size) size -= 1 separator = '' continue separator += i for i in helper_list: deciphered += chr(i) return deciphered if __name__ == '__main__': pass
class Decipher: def __init__(self, data='', password=''): self.data = data self.password = password self.result = False def decipher_password(self): helper = self.data.split('*/*/') (count, separator, compare, helper_list) = (1, '', '', []) for i in helper[0]: if i == '%': helper_list.append(int(separator) - count) count += 1 separator = '' continue separator += i for i in helper_list: compare += chr(i) if compare == self.password: self.result = True return (self.result, helper) def decipher_message(self, helper): helper_list = [] helper_msg = helper[1].split('@*@') message = str(helper_msg[0]) size = int(helper_msg[1]) (separator, deciphered) = ('', '') for i in message: if i == '@': helper_list.append(int(separator) - size) size -= 1 separator = '' continue separator += i for i in helper_list: deciphered += chr(i) return deciphered if __name__ == '__main__': pass
class Error(Exception): pass class ResourceNotFoundError(Error): pass class ResourceAlreadyExistsError(Error): pass class DatabaseCommitFailedError(Error): pass
class Error(Exception): pass class Resourcenotfounderror(Error): pass class Resourcealreadyexistserror(Error): pass class Databasecommitfailederror(Error): pass
N = int(input()) t = N % 360 if t == 90 or t == 270: print('Yes') else: print('No')
n = int(input()) t = N % 360 if t == 90 or t == 270: print('Yes') else: print('No')
#!/usr/bin/python3 # Demo of a dictionary comprehension d={i:chr(i) for i in range(ord('a'),ord('z')+1)} for k,v in d.items(): print(k,':',v)
d = {i: chr(i) for i in range(ord('a'), ord('z') + 1)} for (k, v) in d.items(): print(k, ':', v)
""" Write a Python script to generate and print a dictionary that contains a number (between 1 and n) in the form (x, x*x). Sample Dictionary ( n = 5) : Expected Output : {1: 1, 2: 4, 3: 9, 4: 16, 5: 25} """ n=int(input("Input a number ")) d = dict() for x in range(1,n+1): d[x]=x*x print(d)
""" Write a Python script to generate and print a dictionary that contains a number (between 1 and n) in the form (x, x*x). Sample Dictionary ( n = 5) : Expected Output : {1: 1, 2: 4, 3: 9, 4: 16, 5: 25} """ n = int(input('Input a number ')) d = dict() for x in range(1, n + 1): d[x] = x * x print(d)
#!/usr/bin/python3 class GuiService(): def readSettingsFile(self,wert): settingsFile = open("Settings","r") file = settingsFile.read() fileList = file.split("\n") for element in fileList: if wert in element: x = element.split(":") return x[1] def getPort(self): self.port = self.readSettingsFile("Port") return self.port def getBaudRate(self): self.baudRate = self.readSettingsFile("Baud") return self.baudRate def getIsTrigger(self): if self.readSettingsFile("Trigger") == "True": self.isTrigger = True else: self.isTrigger = False return self.isTrigger def getDesiredDistance(self): self.desieredDistance = float(self.readSettingsFile("Desiered Distance")) return self.desieredDistance def getAcceptableDeviation(self): self.acceptableDeviation = float(self.readSettingsFile("Acceptable Deviation")) return self.acceptableDeviation def getRunsPerSecond(self): self.runsPerSecond = float(self.readSettingsFile("Runs per Second")) return self.runsPerSecond def getSmoothMode(self): if int(self.readSettingsFile("SecList"))==1: self.Smoothmode = "secList" elif int(self.readSettingsFile("Gprmc"))==1: self.Smoothmode = "GPRMC" elif int(self.readSettingsFile("Simple"))==1: self.Smoothmode = "simple" return self.Smoothmode def getLogFile(self): if int(self.readSettingsFile("Gprmc"))==1: self.logFile = "$GPRMC.log" else: self.logFile = "$GPGGA.log" return self.logFile def getListDimensions(self): self.listDimensions = [float(self.readSettingsFile("Length of rawlist")),float(self.readSettingsFile("Length of smoothlist"))] return self.listDimensions def __init__(self): self.port = "" self.baudRate = 0 self.isTrigger = False self.desieredDistance = 1.5 self.acceptableDeviation = 1.0 self.runsPerSecond = 50.0 self.Smoothmode = "secList" self.logFile = "$GPGGA.log" self.listDimensions = [20,2]
class Guiservice: def read_settings_file(self, wert): settings_file = open('Settings', 'r') file = settingsFile.read() file_list = file.split('\n') for element in fileList: if wert in element: x = element.split(':') return x[1] def get_port(self): self.port = self.readSettingsFile('Port') return self.port def get_baud_rate(self): self.baudRate = self.readSettingsFile('Baud') return self.baudRate def get_is_trigger(self): if self.readSettingsFile('Trigger') == 'True': self.isTrigger = True else: self.isTrigger = False return self.isTrigger def get_desired_distance(self): self.desieredDistance = float(self.readSettingsFile('Desiered Distance')) return self.desieredDistance def get_acceptable_deviation(self): self.acceptableDeviation = float(self.readSettingsFile('Acceptable Deviation')) return self.acceptableDeviation def get_runs_per_second(self): self.runsPerSecond = float(self.readSettingsFile('Runs per Second')) return self.runsPerSecond def get_smooth_mode(self): if int(self.readSettingsFile('SecList')) == 1: self.Smoothmode = 'secList' elif int(self.readSettingsFile('Gprmc')) == 1: self.Smoothmode = 'GPRMC' elif int(self.readSettingsFile('Simple')) == 1: self.Smoothmode = 'simple' return self.Smoothmode def get_log_file(self): if int(self.readSettingsFile('Gprmc')) == 1: self.logFile = '$GPRMC.log' else: self.logFile = '$GPGGA.log' return self.logFile def get_list_dimensions(self): self.listDimensions = [float(self.readSettingsFile('Length of rawlist')), float(self.readSettingsFile('Length of smoothlist'))] return self.listDimensions def __init__(self): self.port = '' self.baudRate = 0 self.isTrigger = False self.desieredDistance = 1.5 self.acceptableDeviation = 1.0 self.runsPerSecond = 50.0 self.Smoothmode = 'secList' self.logFile = '$GPGGA.log' self.listDimensions = [20, 2]
carbohydrate_min_length = 3 carbohydrate_chain_length_including_start_C = 3 def is_glycan(a_category): for _ in a_category["types"]: if "Glycan" in _: return True return False def add_carbohydrate_output(output, type_, mass, num_c_atoms, num_o_atoms, atom_list, full_atom_dic): output.append({'type': type_, 'mass': mass, 'CO_count': [num_c_atoms, num_o_atoms], 'atom_indices': atom_list, 'full_atom_dic': full_atom_dic }) return output def are_in_one_cycle(cycles, indices): # indices: an array of indices for a_cycle in cycles: all_in = True for an_index in indices: if an_index not in a_cycle: all_in = False if all_in: return a_cycle return [] def is_in_a_cycle(cycles, index): for a_cycle in cycles: if index in a_cycle: return True return False def there_is_double_bond(mol, atom_index1, atom_index2): atom_index1 += 1 atom_index2 += 1 bonds = mol.get_bonds() for a_bond in bonds: from_index, to_index, num_bonds, val1 = a_bond.get_info() if (atom_index1 == from_index and atom_index2 == to_index) or (atom_index1 == to_index and atom_index2 == from_index): if num_bonds == 2: return True else: return False def parse_atom_nghs(nghs, atoms_of_interest): nums = {} nghs_list = {} for an_atom in atoms_of_interest: nums[an_atom] = 0 nghs_list[an_atom] = [] for a_ngh in nghs: if a_ngh[1] in nums: nums[a_ngh[1]] += 1 nghs_list[a_ngh[1]].append(a_ngh[0]) return nums, nghs_list def get_dic_of_number_of_atoms_in_path(a_path, atoms): dic = {} for an_atom_index in a_path: curr_atom_name = atoms[an_atom_index].get_atom_name() if curr_atom_name in dic: dic[curr_atom_name] += 1 else: dic[curr_atom_name] = 1 curr_nghs = atoms[an_atom_index].get_ngh() cleaned_curr_nghs = [] for a_pair in curr_nghs: if a_pair[0] not in a_path: cleaned_curr_nghs.append(a_pair) nghs_names_to_consider = ['H', 'C', 'O', 'N'] nums, nghs_list = parse_atom_nghs(cleaned_curr_nghs, nghs_names_to_consider) """ we want to include num N's when counting O's """ nums['O'] += nums['N'] # number of atoms for an_atom_name in nghs_names_to_consider: if an_atom_name == 'N': continue if an_atom_name not in dic: dic[an_atom_name] = nums[an_atom_name] else: dic[an_atom_name] += nums[an_atom_name] return dic def get_mass_of_a_path(a_path, atoms): total_mass = 0 for _ in range(len(a_path)): index = a_path[_] total_mass += atoms[index].get_mass() nghs_temp = atoms[index].get_ngh() nghs = [_ for _ in nghs_temp if _[0] not in a_path] nums, nghs_list = parse_atom_nghs(nghs, ['H', 'C', 'O', 'N']) # adding protons attached to a heavy atom in the path total_mass += sum([atoms[_].get_mass() for _ in nghs_list['H']]) # adding mass of nghs and their protons for a_heavy_atom_type in ['C', 'O', 'N']: for _ in nghs_list[a_heavy_atom_type]: # mass of heavy atom total_mass += atoms[_].get_mass() # mass of its protons that are not in the path nghs_temp = atoms[_].get_ngh() nums, nghs_list = parse_atom_nghs(nghs_temp, ['H', 'C', 'O', 'N']) total_mass += sum([atoms[_].get_mass() for _ in nghs_list['H']]) return total_mass def get_atom_dic_of_apath(a_path, atoms, nghs_to_be_ignored): """ in this function, we get types and number of atoms in a path. we also continue every branch of these atoms until we reach to a non_ O, C, H atom """ def find_acceptable_nghs(atoms, atom_index, a_path): """ returns nghs C or O atoms that are not in the a_path """ if atoms[atom_index].get_atom_name() not in ['C', 'O']: # we do not branch out from N return [] nghs_temp = atoms[atom_index].get_ngh() nghs = [_ for _ in nghs_temp if _[0] not in a_path and _[0] not in nghs_to_be_ignored] return nghs def process_nghs(dic, seen_atoms, atoms, atom_index, a_path, ngh_level): ngh_level += 1 if ngh_level > 3: # and atoms[atom_index].get_atom_name() != 'O': return [dic, seen_atoms] nghs = find_acceptable_nghs(atoms, atom_index, a_path) if not nghs: return [dic, seen_atoms] if ngh_level > 2: current_acceptable_atom_names = ['H'] else: current_acceptable_atom_names = acceptable_atom_names nums, nghs_list = parse_atom_nghs(nghs, current_acceptable_atom_names) if ngh_level >= 1 and atoms[atom_index].get_atom_name() == 'O': curr_nghs_list = {'H': nghs_list['H']} else: curr_nghs_list = nghs_list for _ in current_acceptable_atom_names: if _ not in curr_nghs_list: continue for __ in curr_nghs_list[_]: if __ not in seen_atoms and __ not in a_path: if _ not in dic: dic[_] = 0 dic[_] += 1 seen_atoms.append(__) for a_ngh_index in curr_nghs_list[_]: [dic, seen_atoms] = process_nghs(dic, seen_atoms, atoms, a_ngh_index, a_path, ngh_level) return [dic, seen_atoms] acceptable_atom_names = ['H', 'C', 'O', 'N'] dic = {} seen_atoms = [] for atom_index in a_path: if atom_index in seen_atoms: continue seen_atoms.append(atom_index) atom_name = atoms[atom_index].get_atom_name() # atom can be one of the acceptable atom names if atom_name not in acceptable_atom_names: continue if atom_name not in dic: dic[atom_name] = 1 else: dic[atom_name] += 1 ngh_level = 0 [dic, seen_atoms] = process_nghs(dic, seen_atoms, atoms, atom_index, a_path, ngh_level) dic['atoms_indices'] = seen_atoms # [_+1 for _ in seen_atoms] return dic
carbohydrate_min_length = 3 carbohydrate_chain_length_including_start_c = 3 def is_glycan(a_category): for _ in a_category['types']: if 'Glycan' in _: return True return False def add_carbohydrate_output(output, type_, mass, num_c_atoms, num_o_atoms, atom_list, full_atom_dic): output.append({'type': type_, 'mass': mass, 'CO_count': [num_c_atoms, num_o_atoms], 'atom_indices': atom_list, 'full_atom_dic': full_atom_dic}) return output def are_in_one_cycle(cycles, indices): for a_cycle in cycles: all_in = True for an_index in indices: if an_index not in a_cycle: all_in = False if all_in: return a_cycle return [] def is_in_a_cycle(cycles, index): for a_cycle in cycles: if index in a_cycle: return True return False def there_is_double_bond(mol, atom_index1, atom_index2): atom_index1 += 1 atom_index2 += 1 bonds = mol.get_bonds() for a_bond in bonds: (from_index, to_index, num_bonds, val1) = a_bond.get_info() if atom_index1 == from_index and atom_index2 == to_index or (atom_index1 == to_index and atom_index2 == from_index): if num_bonds == 2: return True else: return False def parse_atom_nghs(nghs, atoms_of_interest): nums = {} nghs_list = {} for an_atom in atoms_of_interest: nums[an_atom] = 0 nghs_list[an_atom] = [] for a_ngh in nghs: if a_ngh[1] in nums: nums[a_ngh[1]] += 1 nghs_list[a_ngh[1]].append(a_ngh[0]) return (nums, nghs_list) def get_dic_of_number_of_atoms_in_path(a_path, atoms): dic = {} for an_atom_index in a_path: curr_atom_name = atoms[an_atom_index].get_atom_name() if curr_atom_name in dic: dic[curr_atom_name] += 1 else: dic[curr_atom_name] = 1 curr_nghs = atoms[an_atom_index].get_ngh() cleaned_curr_nghs = [] for a_pair in curr_nghs: if a_pair[0] not in a_path: cleaned_curr_nghs.append(a_pair) nghs_names_to_consider = ['H', 'C', 'O', 'N'] (nums, nghs_list) = parse_atom_nghs(cleaned_curr_nghs, nghs_names_to_consider) " we want to include num N's when counting O's " nums['O'] += nums['N'] for an_atom_name in nghs_names_to_consider: if an_atom_name == 'N': continue if an_atom_name not in dic: dic[an_atom_name] = nums[an_atom_name] else: dic[an_atom_name] += nums[an_atom_name] return dic def get_mass_of_a_path(a_path, atoms): total_mass = 0 for _ in range(len(a_path)): index = a_path[_] total_mass += atoms[index].get_mass() nghs_temp = atoms[index].get_ngh() nghs = [_ for _ in nghs_temp if _[0] not in a_path] (nums, nghs_list) = parse_atom_nghs(nghs, ['H', 'C', 'O', 'N']) total_mass += sum([atoms[_].get_mass() for _ in nghs_list['H']]) for a_heavy_atom_type in ['C', 'O', 'N']: for _ in nghs_list[a_heavy_atom_type]: total_mass += atoms[_].get_mass() nghs_temp = atoms[_].get_ngh() (nums, nghs_list) = parse_atom_nghs(nghs_temp, ['H', 'C', 'O', 'N']) total_mass += sum([atoms[_].get_mass() for _ in nghs_list['H']]) return total_mass def get_atom_dic_of_apath(a_path, atoms, nghs_to_be_ignored): """ in this function, we get types and number of atoms in a path. we also continue every branch of these atoms until we reach to a non_ O, C, H atom """ def find_acceptable_nghs(atoms, atom_index, a_path): """ returns nghs C or O atoms that are not in the a_path """ if atoms[atom_index].get_atom_name() not in ['C', 'O']: return [] nghs_temp = atoms[atom_index].get_ngh() nghs = [_ for _ in nghs_temp if _[0] not in a_path and _[0] not in nghs_to_be_ignored] return nghs def process_nghs(dic, seen_atoms, atoms, atom_index, a_path, ngh_level): ngh_level += 1 if ngh_level > 3: return [dic, seen_atoms] nghs = find_acceptable_nghs(atoms, atom_index, a_path) if not nghs: return [dic, seen_atoms] if ngh_level > 2: current_acceptable_atom_names = ['H'] else: current_acceptable_atom_names = acceptable_atom_names (nums, nghs_list) = parse_atom_nghs(nghs, current_acceptable_atom_names) if ngh_level >= 1 and atoms[atom_index].get_atom_name() == 'O': curr_nghs_list = {'H': nghs_list['H']} else: curr_nghs_list = nghs_list for _ in current_acceptable_atom_names: if _ not in curr_nghs_list: continue for __ in curr_nghs_list[_]: if __ not in seen_atoms and __ not in a_path: if _ not in dic: dic[_] = 0 dic[_] += 1 seen_atoms.append(__) for a_ngh_index in curr_nghs_list[_]: [dic, seen_atoms] = process_nghs(dic, seen_atoms, atoms, a_ngh_index, a_path, ngh_level) return [dic, seen_atoms] acceptable_atom_names = ['H', 'C', 'O', 'N'] dic = {} seen_atoms = [] for atom_index in a_path: if atom_index in seen_atoms: continue seen_atoms.append(atom_index) atom_name = atoms[atom_index].get_atom_name() if atom_name not in acceptable_atom_names: continue if atom_name not in dic: dic[atom_name] = 1 else: dic[atom_name] += 1 ngh_level = 0 [dic, seen_atoms] = process_nghs(dic, seen_atoms, atoms, atom_index, a_path, ngh_level) dic['atoms_indices'] = seen_atoms return dic
class MicroRaidenException(Exception): """Base exception for uRaiden""" pass class InvalidBalanceAmount(MicroRaidenException): """Raised if the payment contains lesser balance than the previous one.""" pass class InvalidBalanceProof(MicroRaidenException): """Balance proof data do not make sense.""" pass class NoOpenChannel(MicroRaidenException): """Attempt to use nonexisting channel.""" pass class InsufficientConfirmations(MicroRaidenException): """uRaiden channel doesn't have enough confirmations.""" pass class NoBalanceProofReceived(MicroRaidenException): """Attempt to close channel with no registered payments.""" pass class InvalidContractVersion(MicroRaidenException): """Library is not compatible with the deployed contract version""" pass class StateFileException(MicroRaidenException): """Base exception class for state file (database) operations""" pass class StateContractAddrMismatch(StateFileException): """Stored state contract address doesn't match.""" pass class StateReceiverAddrMismatch(StateFileException): """Stored state receiver address doesn't match.""" pass class StateFileLocked(StateFileException): """Another process is already using the database""" pass class InsecureStateFile(StateFileException): """Permissions of the state file do not match (0600 is expected).""" pass class NetworkIdMismatch(StateFileException): """RPC endpoint and database have different network id.""" pass
class Microraidenexception(Exception): """Base exception for uRaiden""" pass class Invalidbalanceamount(MicroRaidenException): """Raised if the payment contains lesser balance than the previous one.""" pass class Invalidbalanceproof(MicroRaidenException): """Balance proof data do not make sense.""" pass class Noopenchannel(MicroRaidenException): """Attempt to use nonexisting channel.""" pass class Insufficientconfirmations(MicroRaidenException): """uRaiden channel doesn't have enough confirmations.""" pass class Nobalanceproofreceived(MicroRaidenException): """Attempt to close channel with no registered payments.""" pass class Invalidcontractversion(MicroRaidenException): """Library is not compatible with the deployed contract version""" pass class Statefileexception(MicroRaidenException): """Base exception class for state file (database) operations""" pass class Statecontractaddrmismatch(StateFileException): """Stored state contract address doesn't match.""" pass class Statereceiveraddrmismatch(StateFileException): """Stored state receiver address doesn't match.""" pass class Statefilelocked(StateFileException): """Another process is already using the database""" pass class Insecurestatefile(StateFileException): """Permissions of the state file do not match (0600 is expected).""" pass class Networkidmismatch(StateFileException): """RPC endpoint and database have different network id.""" pass
class Error(Exception): """Base class for other exceptions""" pass class TopicOrServiceNameDoesNotExistError(Error): """The topic or service name passed does not exist in the source destination dictionary.""" pass
class Error(Exception): """Base class for other exceptions""" pass class Topicorservicenamedoesnotexisterror(Error): """The topic or service name passed does not exist in the source destination dictionary.""" pass
n = int(input("Enter a number you want to check:")) def digisum(n): return sum([int(s) for s in str(n)]) def getfactors(n): k=2 result=[] while k ** 2 <= n: while n%k==0: result.append(k) n = n // k k = k +1 if n > 1: result.append(n) return result if digisum(n)==sum([digisum(i) for i in getfactors(n)]): print('It is a smith number') else: print('It is not a smith number')
n = int(input('Enter a number you want to check:')) def digisum(n): return sum([int(s) for s in str(n)]) def getfactors(n): k = 2 result = [] while k ** 2 <= n: while n % k == 0: result.append(k) n = n // k k = k + 1 if n > 1: result.append(n) return result if digisum(n) == sum([digisum(i) for i in getfactors(n)]): print('It is a smith number') else: print('It is not a smith number')
def obok(n, kost): szesc = [[[k * n**2 + j * n + i + 1 for i in range(n)] for j in range(n)] for k in range(n)] p = 0 r = 0 m = 0 for a in range(n): for b in range(n): for c in range(n): if szesc[a][b][c] == kost: p=a r=b m=c #print(szesc[p][r][m]) ret = [] for indexy in [ [p + 1, r, m], [p - 1, r, m], [p, r + 1, m], [p, r - 1, m], [p, r, m + 1], [p, r, m - 1] ]: if indexy[0] not in range(n) or indexy[1] not in range(n) or indexy[2] not in range(n): continue ret.append(szesc[indexy[0]][indexy[1]][indexy[2]]) ret.sort() return ret
def obok(n, kost): szesc = [[[k * n ** 2 + j * n + i + 1 for i in range(n)] for j in range(n)] for k in range(n)] p = 0 r = 0 m = 0 for a in range(n): for b in range(n): for c in range(n): if szesc[a][b][c] == kost: p = a r = b m = c ret = [] for indexy in [[p + 1, r, m], [p - 1, r, m], [p, r + 1, m], [p, r - 1, m], [p, r, m + 1], [p, r, m - 1]]: if indexy[0] not in range(n) or indexy[1] not in range(n) or indexy[2] not in range(n): continue ret.append(szesc[indexy[0]][indexy[1]][indexy[2]]) ret.sort() return ret
def getAbsMax(list, roundTo=None): """ `list` - the list/array to find the absolute maximum `roundTo` - the number of digits to round the result to. returns the absolute maximum of a list. """ x = max(max(list), abs(min(list))) if roundTo: x = round(x, roundTo) return x
def get_abs_max(list, roundTo=None): """ `list` - the list/array to find the absolute maximum `roundTo` - the number of digits to round the result to. returns the absolute maximum of a list. """ x = max(max(list), abs(min(list))) if roundTo: x = round(x, roundTo) return x
######## ## ## Class to represent a bot in an IPD tournament ## ######## class BotPlayer(object): """ This class should be inherited from by bots who define their own getNextMove method. That is how bots have their own strategy. self.name is the name of the strategy employed self.description is an explanation of the strategy self.tournament_id can be assigned upon beginning each tournament """ def __init__(self, name, description=None): self.name = name self.description = description if not self.description: self.description = self.name self.tournament_id = None def __str__(self): return self.name def getNextMove(self, pastMoves, payoffs, w): """ Given the history of interactions with another bot, output the next move, either cooperate or defect This method is to be overridden by bots and should use only static initialization variables, randomness, and past moves in order to make a decision. No other state should be updated/saved/taken into account. TODO: Is that 'no other state' thing valid? What if a bot wants to do some behavior only once, but when exactly it does so is randomly determined? I believe this could require some saved information besides the history of moves, but this seems like a valid strategy. ARGS: pastMoves: array of tuples, where each tuple is the pair of choices made that turn by this bot and its partner [(myMove1, hisMove1), (myMove2, hisMove2), ...] and the moves are represented by 'C' for "Cooperate" or 'D' for "Defect". For example, [('C', 'D'), ('D', 'D'), ...] RETURNS: nextMove: 'C' for "Cooperate" or 'D' for "Defect" """ ## this method should be overridden, so this return value ## doesn't matter return 'D'
class Botplayer(object): """ This class should be inherited from by bots who define their own getNextMove method. That is how bots have their own strategy. self.name is the name of the strategy employed self.description is an explanation of the strategy self.tournament_id can be assigned upon beginning each tournament """ def __init__(self, name, description=None): self.name = name self.description = description if not self.description: self.description = self.name self.tournament_id = None def __str__(self): return self.name def get_next_move(self, pastMoves, payoffs, w): """ Given the history of interactions with another bot, output the next move, either cooperate or defect This method is to be overridden by bots and should use only static initialization variables, randomness, and past moves in order to make a decision. No other state should be updated/saved/taken into account. TODO: Is that 'no other state' thing valid? What if a bot wants to do some behavior only once, but when exactly it does so is randomly determined? I believe this could require some saved information besides the history of moves, but this seems like a valid strategy. ARGS: pastMoves: array of tuples, where each tuple is the pair of choices made that turn by this bot and its partner [(myMove1, hisMove1), (myMove2, hisMove2), ...] and the moves are represented by 'C' for "Cooperate" or 'D' for "Defect". For example, [('C', 'D'), ('D', 'D'), ...] RETURNS: nextMove: 'C' for "Cooperate" or 'D' for "Defect" """ return 'D'
class OrderNotFound(Exception): def __init__(self, message='Order tidak ditemukan!'): self.message = message super().__init__(self.message) pass
class Ordernotfound(Exception): def __init__(self, message='Order tidak ditemukan!'): self.message = message super().__init__(self.message) pass
class Solution: def addDigits(self, num: int) -> int: while num > 9: num = sum(int(ch) for ch in str(num)) return num
class Solution: def add_digits(self, num: int) -> int: while num > 9: num = sum((int(ch) for ch in str(num))) return num
value = '' for i in range(1, 10001): value = value + str(i) + ' ' value = value.replace('0', ' ') values = value.split(' ') total = 0; for num in values: if num.lstrip().rstrip().strip() == '': continue total += int(num) print ('Total: ' + str(total))
value = '' for i in range(1, 10001): value = value + str(i) + ' ' value = value.replace('0', ' ') values = value.split(' ') total = 0 for num in values: if num.lstrip().rstrip().strip() == '': continue total += int(num) print('Total: ' + str(total))
class Stack: def __init__(self): self.data = [] def pop(self): if self.is_empty(): return None val = self.data[len(self.data)-1] self.data = self.data[:len(self.data)-1] return val def peek(self): if self.is_empty(): return None return self.data[len(self.data)-1] def push(self, val): self.data.append(val) def is_empty(self): return len(self.data) == 0 class Queue: def __init__(self): self.in_stack = Stack() self.out_stack = Stack() def enqueue(self, val): self.in_stack.push(val) def dequeue(self): if self.out_stack.is_empty(): if self.in_stack.is_empty(): return None while self.in_stack.is_empty() == False: self.out_stack.push(self.in_stack.pop()) return self.out_stack.pop() def peek(self): if self.out_stack.is_empty(): if self.in_stack.is_empty(): return None while self.in_stack.is_empty() == False: self.out_stack.push(self.in_stack.pop()) return self.out_stack.peek() def is_empty(self): return self.in_stack.is_empty() and self.out_stack.is_empty def print_queue(q): s = "[" for i in range(0, len(q.out_stack.data)): s += str(q.out_stack.data[i]) if i < len(q.out_stack.data)-1: s += ", " for i in range(0, len(q.in_stack.data)): s += str(q.in_stack.data[i]) if i < len(q.in_stack.data)-1: s += ", " s += "]" print(s) queue = Queue() queue.enqueue(1) queue.enqueue(2) queue.enqueue(3) # should print [1, 2, 3] print_queue(queue) v = queue.dequeue() # should print [2, 3] print_queue(queue) v = queue.dequeue() # should print [3] print_queue(queue) queue.enqueue(4) queue.enqueue(5) queue.enqueue(6) v = queue.dequeue() # should print [4, 5, 6] print_queue(queue) v = queue.dequeue() v = queue.dequeue() v = queue.dequeue() print_queue(queue) v = queue.dequeue() print_queue(queue)
class Stack: def __init__(self): self.data = [] def pop(self): if self.is_empty(): return None val = self.data[len(self.data) - 1] self.data = self.data[:len(self.data) - 1] return val def peek(self): if self.is_empty(): return None return self.data[len(self.data) - 1] def push(self, val): self.data.append(val) def is_empty(self): return len(self.data) == 0 class Queue: def __init__(self): self.in_stack = stack() self.out_stack = stack() def enqueue(self, val): self.in_stack.push(val) def dequeue(self): if self.out_stack.is_empty(): if self.in_stack.is_empty(): return None while self.in_stack.is_empty() == False: self.out_stack.push(self.in_stack.pop()) return self.out_stack.pop() def peek(self): if self.out_stack.is_empty(): if self.in_stack.is_empty(): return None while self.in_stack.is_empty() == False: self.out_stack.push(self.in_stack.pop()) return self.out_stack.peek() def is_empty(self): return self.in_stack.is_empty() and self.out_stack.is_empty def print_queue(q): s = '[' for i in range(0, len(q.out_stack.data)): s += str(q.out_stack.data[i]) if i < len(q.out_stack.data) - 1: s += ', ' for i in range(0, len(q.in_stack.data)): s += str(q.in_stack.data[i]) if i < len(q.in_stack.data) - 1: s += ', ' s += ']' print(s) queue = queue() queue.enqueue(1) queue.enqueue(2) queue.enqueue(3) print_queue(queue) v = queue.dequeue() print_queue(queue) v = queue.dequeue() print_queue(queue) queue.enqueue(4) queue.enqueue(5) queue.enqueue(6) v = queue.dequeue() print_queue(queue) v = queue.dequeue() v = queue.dequeue() v = queue.dequeue() print_queue(queue) v = queue.dequeue() print_queue(queue)
"""The result library.""" class Result: """ Construct Result objects. Result is the basic answer for services that encapsulates the outcome of the service in a clear and consistent pattern across services. It was added after creating some services, so there are a few of them that do not make use of it. Eventually we might want to replace the responses for those services. """ @staticmethod def from_success(value): """Return a successful response to a given service.""" return Success(value) @staticmethod def from_failure(errors): """Return a failure response for a given service.""" return Failure(errors) def __repr__(self): return self.__str__() class Failure: """Construct the Failure object for failed services.""" def __init__(self, errors): self.success = False self.failure = True self.errors = errors def __str__(self): return "Failure: `{}`".format(str(self.errors)) def __bool__(self): return False def map(self, fn): return self class Success: """Construct the Success object for successful services.""" def __init__(self, value): self.success = True self.failure = False self.value = value def __str__(self) -> str: return "Success: `{}`".format(str(self.value)) def __repr__(self) -> str: return self.__str__() def __bool__(self): return True def map(self, fn): return Success(fn(self.value))
"""The result library.""" class Result: """ Construct Result objects. Result is the basic answer for services that encapsulates the outcome of the service in a clear and consistent pattern across services. It was added after creating some services, so there are a few of them that do not make use of it. Eventually we might want to replace the responses for those services. """ @staticmethod def from_success(value): """Return a successful response to a given service.""" return success(value) @staticmethod def from_failure(errors): """Return a failure response for a given service.""" return failure(errors) def __repr__(self): return self.__str__() class Failure: """Construct the Failure object for failed services.""" def __init__(self, errors): self.success = False self.failure = True self.errors = errors def __str__(self): return 'Failure: `{}`'.format(str(self.errors)) def __bool__(self): return False def map(self, fn): return self class Success: """Construct the Success object for successful services.""" def __init__(self, value): self.success = True self.failure = False self.value = value def __str__(self) -> str: return 'Success: `{}`'.format(str(self.value)) def __repr__(self) -> str: return self.__str__() def __bool__(self): return True def map(self, fn): return success(fn(self.value))
class Solution: def shortestWordDistance(self, words, word1, word2): i1 = i2 = -1 res, same = float("inf"), word1 == word2 for i, w in enumerate(words): if w == word1: if same: i2 = i1 i1 = i if i2 >= 0: res = min(res, i1 - i2) elif w == word2: i2 = i if i1 >= 0: res = min(res, i2 - i1) return res
class Solution: def shortest_word_distance(self, words, word1, word2): i1 = i2 = -1 (res, same) = (float('inf'), word1 == word2) for (i, w) in enumerate(words): if w == word1: if same: i2 = i1 i1 = i if i2 >= 0: res = min(res, i1 - i2) elif w == word2: i2 = i if i1 >= 0: res = min(res, i2 - i1) return res
class LogSystem: def __init__(self): """Design. """ self.d = {} self.g = {'Year': 4, 'Month': 7, 'Day': 10, 'Hour': 13, 'Minute': 16, 'Second': 19} def put(self, id: int, timestamp: str) -> None: self.d[timestamp] = id def retrieve(self, start: str, end: str, granularity: str) -> List[int]: idx = self.g[granularity] s, e = start[:idx], end[:idx] res = [] for k, v in self.d.items(): if s <= k[:idx] <= e: res.append(v) return res
class Logsystem: def __init__(self): """Design. """ self.d = {} self.g = {'Year': 4, 'Month': 7, 'Day': 10, 'Hour': 13, 'Minute': 16, 'Second': 19} def put(self, id: int, timestamp: str) -> None: self.d[timestamp] = id def retrieve(self, start: str, end: str, granularity: str) -> List[int]: idx = self.g[granularity] (s, e) = (start[:idx], end[:idx]) res = [] for (k, v) in self.d.items(): if s <= k[:idx] <= e: res.append(v) return res
if __name__ == '__main__': n = int(input()) arr = map(int, input().split(' ')) arr = sorted(list(arr)) arr.reverse() biggest = arr[0] for i in arr: if i != biggest: print(i) break
if __name__ == '__main__': n = int(input()) arr = map(int, input().split(' ')) arr = sorted(list(arr)) arr.reverse() biggest = arr[0] for i in arr: if i != biggest: print(i) break
class Test(): pass test = Test() print(test.__new__)
class Test: pass test = test() print(test.__new__)
i = input('carteira em reais: ') d = float(i)/3.27 print('carteira em dollar: ',d)
i = input('carteira em reais: ') d = float(i) / 3.27 print('carteira em dollar: ', d)
# GUI Application automation and testing library # Copyright (C) 2006 Mark Mc Mahon # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public License # as published by the Free Software Foundation; either version 2.1 # of the License, or (at your option) any later version. # # This library 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 GNU Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with this library; if not, write to the # Free Software Foundation, Inc., # 59 Temple Place, # Suite 330, # Boston, MA 02111-1307 USA """ComboBox dropped height Test **What is checked** It is ensured that the height of the list displayed when the combobox is dropped down is not less than the height of the reference. **How is it checked** The value for the dropped rectangle can be retrieved from windows. The height of this rectangle is calculated and compared against the reference height. **When is a bug reported** If the height of the dropped rectangle for the combobox being checked is less than the height of the reference one then a bug is reported. **Bug Extra Information** There is no extra information associated with this bug type **Is Reference dialog needed** The reference dialog is necessary for this test. **False positive bug reports** No false bugs should be reported. If the font of the localised control has a smaller height than the reference then it is possible that the dropped rectangle could be of a different size. **Test Identifier** The identifier for this test/bug is "ComboBoxDroppedHeight" """ __revision__ = "$Revision: 276 $" testname = "ComboBoxDroppedHeight" def ComboBoxDroppedHeightTest(windows): "Check if each combobox height is the same as the reference" bugs = [] for win in windows: if not win.ref: continue if win.Class() != "ComboBox" or win.ref.Class() != "ComboBox": continue if win.DroppedRect().height() != win.ref.DroppedRect().height(): bugs.append(( [win, ], {}, testname, 0,) ) return bugs
"""ComboBox dropped height Test **What is checked** It is ensured that the height of the list displayed when the combobox is dropped down is not less than the height of the reference. **How is it checked** The value for the dropped rectangle can be retrieved from windows. The height of this rectangle is calculated and compared against the reference height. **When is a bug reported** If the height of the dropped rectangle for the combobox being checked is less than the height of the reference one then a bug is reported. **Bug Extra Information** There is no extra information associated with this bug type **Is Reference dialog needed** The reference dialog is necessary for this test. **False positive bug reports** No false bugs should be reported. If the font of the localised control has a smaller height than the reference then it is possible that the dropped rectangle could be of a different size. **Test Identifier** The identifier for this test/bug is "ComboBoxDroppedHeight" """ __revision__ = '$Revision: 276 $' testname = 'ComboBoxDroppedHeight' def combo_box_dropped_height_test(windows): """Check if each combobox height is the same as the reference""" bugs = [] for win in windows: if not win.ref: continue if win.Class() != 'ComboBox' or win.ref.Class() != 'ComboBox': continue if win.DroppedRect().height() != win.ref.DroppedRect().height(): bugs.append(([win], {}, testname, 0)) return bugs