Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """ | |
| broadcast_reduce(f,op,v0,A,Bs...) | |
| Should behave like mapreduce, with the only difference that singleton dimension are expanded like in broadcast. | |
| """ | |
| function broadcast_reduce(f,op,v0,A,Bs...) | |
| shape = Base.Broadcast.broadcast_indices(A,Bs...) | |
| iter = CartesianRange(shape) | |
| keeps, Idefaults = Base.Broadcast.map_newindexer(shape, A, Bs) | |
| _broadcast_reduce(f,op,v0,keeps,Idefaults,A, Bs,Val{length(Bs)}(),iter) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import cablab | |
| from cablab import cube_gen | |
| from cablab import cube_config | |
| from collections import OrderedDict | |
| from textwrap import TextWrapper | |
| class varInfo: | |
| def __init__(self): | |
| plist = cube_gen._load_source_providers() | |
| plist.pop('test') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from datetime import datetime, timedelta | |
| from cablab import Cube, CubeConfig, CubeSourceProvider | |
| import numpy | |
| class MiniCubeProvider(CubeSourceProvider): | |
| def __init__(self, cube_config): | |
| if cube_config.grid_width != 6 or cube_config.grid_height != 3: | |
| raise ValueError('illegal cube configuration, cube dimension must be 6x3') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| "Get the exact version of a package." | |
| function version(name::AbstractString) | |
| packages = JSON.parse(readall(`$conda list --json`)) | |
| for package in packages | |
| if startswith(package, name) | |
| return package | |
| end | |
| end | |
| warn("Could not find the $name package") | |
| return "Not found" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| if VERSION > v"0.4.0-dev+4268" | |
| const marcoexpandkeys = Dict{Any,Any}("^I" => function (s,o...) | |
| if !isempty(s) | |
| line = parse(Base.LineEdit.input_string(s)) | |
| s.kill_buffer=Base.LineEdit.input_string(s) | |
| Base.LineEdit.edit_clear(s) | |
| Base.LineEdit.edit_insert(s,string(macroexpand(line))) | |
| end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| type Naive_Sparse_3{T} <: AbstractArray{T,3} | |
| size::(Int,Int,Int) | |
| vals::Dict{Int,T} | |
| end | |
| function getindex(A::Naive_Sparse_3,i::Int) | |
| A.vals[i] | |
| end | |
| function getindex(A::Naive_Sparse_3,i1::Int,i2::Int,i3::Int) | |
| i=((i3-1)*A.size[1]+(i2-1))*A.size[2]+i1 | |
| getindex(A,i) |
NewerOlder