require 'tensor_stream/evaluator/operation_helpers/random_gaussian' require 'tensor_stream/evaluator/operation_helpers/array_ops_helper' require 'tensor_stream/evaluator/operation_helpers/math_helper' require 'tensor_stream/evaluator/base_evaluator' require 'tensor_stream/evaluator/ruby/math_ops' require 'tensor_stream/evaluator/ruby/nn_ops' module TensorStream module Evaluator class FullEvalNotPossible < RuntimeError end # Errors during graph evaluation class EvaluatorExcecutionException < RuntimeError attr_reader :tensor def initialize(exception, tensor) @exception = exception @tensor = tensor end def wrapped_exception @exception end end ## PURE ruby evaluator used for testing and development class RubyEvaluator < BaseEvaluator attr_accessor :retain include TensorStream::OpHelper include TensorStream::ArrayOpsHelper include TensorStream::MathHelper include TensorStream::MathOps include TensorStream::NNOps def run(tensor, execution_context) return tensor.map { |t| run(t, execution_context) } if tensor.is_a?(Array) && !tensor.empty? && tensor[0].is_a?(Tensor) tensor = tensor.call if tensor.is_a?(Proc) child_context = execution_context.dup res = if tensor.is_a?(Operation) eval_operation(tensor, child_context) elsif tensor.is_a?(Variable) eval_variable(tensor, child_context) elsif tensor.is_a?(Placeholder) resolve_placeholder(tensor, child_context) elsif tensor.is_a?(OutputGroup) tensor.outputs[0] else eval_tensor(tensor, child_context) end execution_context.deep_merge!(returns: child_context[:returns]) res end def run_with_buffer(tensor, context, execution_context) @context = context @context[:_cache][:_cl_buffers] ||= {} if context[:_cache] result = run(tensor, execution_context) TensorStream::Buffer.new(data_type: tensor.data_type, buffer: result) end def complete_eval(tensor, context) Kernel.loop do old_tensor = tensor tensor = run(tensor, context) tensor = tensor.map { |t| complete_eval(t, context) } if tensor.is_a?(Array) && !tensor.empty? && tensor[0].is_a?(Tensor) break if old_tensor.equal?(tensor) break unless tensor.is_a?(Tensor) end tensor.is_a?(OutputGroup) ? tensor.outputs[0] : tensor end protected def prepare_input(tensor, context, options = {}) return nil unless tensor tensor = resolve_placeholder(tensor) if options[:noop] tensor elsif options[:no_eval] run(tensor, context) else complete_eval(tensor, context) end end def eval_variable(tensor, child_context) value = tensor.read_value raise "variable #{tensor.name} not initalized" if value.nil? eval_tensor(value, child_context).tap do |val| child_context[:returns] ||= {} child_context[:returns][:vars] ||= [] child_context[:returns][:vars] << { name: tensor.name, val: val } end end register_op(:no_op, no_eval: true) do |_context, _tensor, inputs| inputs end register_op(:const) do |_context, _tensor, inputs| inputs[0] end register_op(%i[argmax arg_max]) do |_context, tensor, inputs| axis = tensor.options[:axis] || 0 rank = get_rank(inputs[0]) raise TensorStream::InvalidArgumentError, "Expected dimension in the range [#{-rank},#{rank}) but got #{axis}" if axis < -rank || axis >= rank get_op_with_axis(inputs[0], axis, 0, tensor.data_type) end register_op(%i[argmin arg_min]) do |_context, tensor, inputs| axis = tensor.options[:axis] || 0 rank = get_rank(inputs[0]) raise TensorStream::InvalidArgumentError, "Expected dimension in the range [#{-rank},#{rank}) but got #{axis}" if axis < -rank || axis >= rank get_op_with_axis(inputs[0], axis, 0, tensor.data_type, ->(a, b) { a < b }) end register_op(:cast) do |context, tensor, inputs| call_op(:cast, inputs[0], context, ->(t, _b) { Tensor.cast_dtype(t, tensor.data_type) }) end register_op(:sign) do |context, _tensor, inputs| func = lambda { |x, _b| if x.zero? || (x.is_a?(Float) && x.nan?) 0 elsif x < 0 -1 elsif x > 0 1 else raise 'assert: cannot be here' end } call_op(:sign, inputs[0], context, func) end register_op(:logical_and) do |context, tensor, inputs| call_vector_op(tensor, :logical_and, inputs[0], inputs[1], context, ->(t, u) { t && u }) end register_op(:equal) do |context, tensor, inputs| call_vector_op(tensor, :equal, inputs[0], inputs[1], context, ->(t, u) { t == u }) end register_op(:not_equal) do |context, tensor, inputs| call_vector_op(tensor, :not_equal, inputs[0], inputs[1], context, ->(t, u) { t != u }) end register_op :index, no_eval: true do |_context, _tensor, inputs| f = inputs[0] index = inputs[1] if f.is_a?(OutputGroup) f.outputs[index] else f[index] end end register_op :slice do |context, tensor, inputs| input = inputs[0] start = inputs[1] size = complete_eval(tensor.options[:size], context) raise "start index and size not of the same shape #{start.size} != #{size.size}" if start.size != size.size slice_tensor(input, start, size) end def merge_dynamic_stitch(merged, indexes, data) indexes.each_with_index do |ind, m| if ind.is_a?(Array) merge_dynamic_stitch(merged, ind, data[m]) else merged[ind] = data[m] end end end register_op %i[flow_dynamic_stitch dynamic_stitch] do |_context, _tensor, inputs| indexes, data = inputs merged = [] merge_dynamic_stitch(merged, indexes, data) merged end register_op :gather do |_context, _tensor, inputs| params, indexes = inputs gather(params, indexes) end register_op :setdiff1d do |_context, tensor, inputs| input, remove = inputs idx = [] out = [] input.each_with_index do |x, index| next if remove.include?(x) out << x idx << index end idx = idx.map { |i| Tensor.cast_dtype(i, tensor.options[:index_dtype]) } unless tensor.options[:index_dtype] == :int32 OutputGroup.new([out, idx], tensor.inputs.map(&:data_type)) end register_op :cumprod do |context, tensor, inputs| x = inputs[0] c = fp_type?(tensor.data_type) ? 1.0 : 1 reverse_option = tensor.options[:reverse] exclusive = tensor.options[:exclusive] func = lambda do |arr| return c if arr.nil? count = arr.size arr = arr.reverse if reverse_option arr = [1] + arr if exclusive start_prod = arr[0] mapped = arr[1...count].map do |v| start_prod = vector_op(start_prod, v, ->(a, b) { a * b }) end arr = [arr[0]] + mapped reverse_option ? arr.reverse : arr end reduction(context, tensor, func) end register_op :invert_permutation do |_context, _tensor, inputs| input = inputs[0] output = input.dup input.size.times.each do |index| output[input[index]] = index end unless input.nil? output end register_op :size do |_context, tensor, inputs| input = inputs[0] Tensor.cast_dtype(input.flatten.size, tensor.options[:out_type]) end register_op %i[concat concat_v2] do |_context, tensor, inputs| concat_array(inputs, tensor.options[:axis]) end register_op :stop_gradient, no_eval: true do |_context, _tensor, inputs| inputs[0] end register_op :sigmoid_grad, no_eval: true do |context, tensor, inputs| a, b = inputs call_vector_op(tensor, :sigmoid_grad, a, b, context, ->(t, u) { u * sigmoid(t) * (1 - sigmoid(t)) }) end register_op :random_uniform, no_eval: true do |_context, tensor, _inputs| maxval = tensor.options.fetch(:maxval, 1) minval = tensor.options.fetch(:minval, 0) seed = tensor.options[:seed] random = _get_randomizer(tensor, seed) generator = -> { random.rand * (maxval - minval) + minval } shape = tensor.options[:shape] || tensor.shape.shape generate_vector(shape, generator: generator) end register_op :random_standard_normal, no_eval: true do |_context, tensor, _inputs| seed = tensor.options[:seed] random = _get_randomizer(tensor, seed) r = RandomGaussian.new(tensor.options.fetch(:mean), tensor.options.fetch(:stddev), -> { random.rand }) random = _get_randomizer(tensor, seed) generator = -> { r.rand } shape = tensor.options[:shape] || tensor.shape.shape generate_vector(shape, generator: generator) end register_op :glorot_uniform, no_eval: true do |_context, tensor, _inputs| seed = tensor.options[:seed] random = _get_randomizer(tensor, seed) shape = tensor.options[:shape] || tensor.shape.shape fan_in, fan_out = if shape.size.zero? [1, 1] elsif shape.size == 1 [1, shape[0]] else [shape[0], shape.last] end limit = Math.sqrt(6.0 / (fan_in + fan_out)) minval = -limit maxval = limit generator = -> { random.rand * (maxval - minval) + minval } generate_vector(shape, generator: generator) end register_op :assign, noop: true do |context, tensor, _inputs| assign = tensor.inputs[0] || tensor assign.value = global_eval(tensor, tensor.inputs[1], context) assign.value end register_op :assign_add, noop: true do |context, tensor, _inputs| tensor.inputs[0].value = process_vector_math_op(tensor, tensor.inputs[0], tensor.inputs[1], context, ->(t, u) { t + u }) tensor.inputs[0].value end register_op :variable, noop: true do |_context, tensor, _inputs| tensor.inputs[0].value end register_op :assign_sub, noop: true do |context, tensor, _inputs| tensor.inputs[0].value = process_vector_math_op(tensor, tensor.inputs[0], tensor.inputs[1], context, ->(t, u) { t - u }) tensor.inputs[0].value end register_op :stack do |_context, tensor, inputs| axis = tensor.options[:axis] || 0 shape = shape_eval(inputs[0]) rank = shape.size + 1 elem_size = shape.empty? ? 1 : shape.reduce(:*) output_buffer = Array.new(inputs.size * elem_size) { 0 } new_shape = [inputs.size] shape.inject(new_shape) { |ns, s| ns << s } divisors = new_shape.dup.drop(1).reverse.inject([1]) do |a, s| a << s * a.last end.reverse axis = rank + axis if axis < 0 rotated_shape = Array.new(axis + 1) { new_shape.shift } new_shape = rotated_shape.rotate! + new_shape multipliers = new_shape.dup.drop(1).reverse.inject([1]) do |a, s| a << s * a.last end.reverse inputs.each_with_index do |input, index| raw_input = input.is_a?(Array) ? input.flatten : [input] start = index * divisors.first raw_input.each_with_index do |x, index2| index_map = [] ptr = start + index2 divisors.each_with_object(index_map) do |div, a| a << (ptr / div.to_f).floor ptr = ptr % div end rotated_index = Array.new(axis + 1) { index_map.shift } index_map = rotated_index.rotate! + index_map ptr2 = 0 multipliers.each_with_index do |m, idx| ptr2 += index_map[idx] * m end output_buffer[ptr2] = x end end TensorShape.reshape(output_buffer, new_shape) end register_op :mean, noop: true do |context, tensor, _inputs| c = fp_type?(tensor.data_type) ? 0.0 : 0 func = lambda do |arr| return c if arr.nil? reduced_val = arr[0] arr[1..arr.size].each do |v| reduced_val = vector_op(reduced_val, v, ->(a, b) { a + b }) end vector_op(reduced_val, nil, ->(a, _b) { a / arr.size }) end reduction(context, tensor, func) end register_op :sum, noop: true do |context, tensor, _inputs| func = lambda do |arr| reduced_val = arr[0] arr[1..arr.size].each do |v| reduced_val = vector_op(reduced_val, v, ->(t, u) { t + u }) end reduced_val end reduction(context, tensor, func) end register_op :prod, noop: true do |context, tensor, _inputs| c = fp_type?(tensor.data_type) ? 1.0 : 1 func = lambda do |arr| return c if arr.nil? reduced_val = arr[0] arr[1..arr.size].each do |v| reduced_val = vector_op(reduced_val, v, ->(a, b) { a * b }) end reduced_val end reduction(context, tensor, func) end register_op :range do |_context, _tensor, inputs| start, limit, delta = inputs raise " delta !=0 " if delta.zero? raise " Requires start <= limit when delta > 0" if (start > limit) && delta > 0 raise " Requires start >= limit when delta < 0" if (start < limit) && delta < 0 cur_step = start r = [] Kernel.loop do break if start == limit break if (start < limit) && (cur_step >= limit) break if (start > limit) && (cur_step <= limit) r << cur_step cur_step += delta end r end register_op :transpose do |_context, tensor, inputs| shape = shape_eval(inputs[0]) rank = get_rank(inputs[0]) perm = inputs[1] || (0...rank).to_a.reverse if rank == 2 && perm.nil? # use native transpose for general case inputs[0].transpose else arr = inputs[0].flatten new_shape = perm.map { |p| shape[p] } new_arr = Array.new(shape.reduce(:*)) { 0 } transpose_with_perm(arr, new_arr, shape, new_shape, perm) TensorShape.reshape(new_arr, new_shape) end end register_op :eye do |_context, tensor, inputs| rows, columns = inputs Array.new(rows) do |i| Array.new(columns) do |col| if fp_type?(tensor.data_type) i == col ? 1.0 : 0.0 else i == col ? 1 : 0 end end end end register_op :expand_dims do |_context, _tensor, inputs| val, axis = inputs axis = axis.nil? ? 0 : axis shape = shape_eval(val) axis = -axis if axis == shape.size new_shape = shape.dup.insert(axis, 1).compact TensorShape.reshape([val].flatten, new_shape) end register_op :cond, noop: true do |context, tensor, inputs| pred = global_eval(tensor, tensor.options[:pred], context) if all_true?(pred) global_eval(tensor, inputs[0], context) else global_eval(tensor, inputs[1], context) end end register_op %i[select where] do |context, tensor, inputs| pred = complete_eval(tensor.options[:pred], context) call_3way_vector_op(pred, inputs[0], inputs[1], context, ->(t, u, v) { t ? u : v }) end register_op :less do |context, tensor, inputs| a, b = inputs call_vector_op(tensor, :less, a, b, context, ->(t, u) { t < u }) end register_op :greater do |context, tensor, inputs| a, b = inputs call_vector_op(tensor, :greater, a, b, context, ->(t, u) { t > u }) end register_op :greater_equal do |context, tensor, inputs| a, b = inputs call_vector_op(tensor, :greater_equal, a, b, context, ->(t, u) { t >= u }) end register_op :less_equal do |context, tensor, inputs| a, b = inputs call_vector_op(tensor, :greater_equal, a, b, context, ->(t, u) { t <= u }) end register_op :fill do |_context, _tensor, inputs| shape = inputs[0] value = inputs[1] func = -> { value } if shape.is_a?(Array) && shape.size.zero? func.call else shape = [shape.to_i] unless shape.is_a?(Array) generate_vector(shape, generator: func) end end register_op %i[zeros ones zeros_like ones_like] do |_context, tensor, inputs| shape = if %i[zeros_like ones_like].include?(tensor.operation) shape_eval(inputs[0]) else inputs[0] || tensor.shape.shape end func = if %i[zeros zeros_like].include?(tensor.operation) -> { int_type?(tensor.data_type) ? 0 : 0.0 } else -> { int_type?(tensor.data_type) ? 1 : 1.0 } end if shape.is_a?(Array) && shape.size.zero? func.call else shape = [shape.to_i] unless shape.is_a?(Array) cache_key = "#{tensor.operation}_#{shape}" if @context[:_cache].key?(cache_key) @context[:_cache][cache_key] else generate_vector(shape, generator: func).tap do |v| @context[:_cache][cache_key] = v end end end end register_op :shape do |_context, tensor, inputs| shape_eval(inputs[0], tensor.options[:out_type]) end register_op :mat_mul do |_context, tensor, inputs| matrix_a, matrix_b = inputs rank_a = get_rank(matrix_a) rank_b = get_rank(matrix_b) raise "#{tensor.inputs[0].name} rank must be greater than 1" if rank_a < 2 raise "#{tensor.inputs[1].name} rank must be greater than 1" if rank_b < 2 matrix_a = matrix_a.transpose if tensor.options[:transpose_a] matrix_b = matrix_b.transpose if tensor.options[:transpose_b] # check matrix dimensions raise "incompatible shape sizes for matrix multiplication (#{matrix_a[0].size} != #{matrix_b.size}) #{shape_eval(matrix_a)} vs #{shape_eval(matrix_b)}" if matrix_a[0].size != matrix_b.size (Matrix[*matrix_a] * Matrix[*matrix_b]).to_a end register_op :broadcast_transform do |_context, _tensor, inputs| broadcast(inputs[0], inputs[1]) end register_op :truncate do |_context, _tensor, inputs| truncate(inputs[0], inputs[1]) end register_op :identity do |_context, _tensor, inputs| inputs[0] end register_op :print do |_context, tensor, inputs| puts "#{tensor.options.fetch(:message, '')} #{inputs[1]}" inputs[0] end register_op :rank do |_context, _tensor, inputs| get_rank(inputs[0]) end register_op %i[div real_div], noop: true do |context, tensor, inputs| process_vector_math_op(tensor, inputs[0], inputs[1], context, ->(t, u) { t / u }) end register_op :reshape do |_context, _tensor, inputs| arr, new_shape = inputs arr = [arr] unless arr.is_a?(Array) flat_arr = arr.flatten if new_shape.size.zero? && flat_arr.size == 1 flat_arr[0] else new_shape = TensorShape.fix_inferred_elements(new_shape, flat_arr.size) TensorShape.reshape(flat_arr, new_shape) end end register_op :pad do |context, tensor, inputs| p = complete_eval(tensor.options[:paddings], context) arr_pad(inputs[0], p, tensor.data_type) end register_op %i[max maximum], noop: true do |context, tensor, inputs| call_vector_op(tensor, :max, inputs[0], inputs[1], context, ->(t, u) { [t, u].max }) end register_op %i[min minimum], noop: true do |context, tensor, inputs| call_vector_op(tensor, :min, inputs[0], inputs[1], context, ->(t, u) { [t, u].min }) end register_op :broadcast_gradient_args do |_context, tensor, inputs| rx, ry = get_broadcast_gradient_args(inputs[0], inputs[1]) OutputGroup.new([rx, ry], tensor.inputs.map(&:data_type)) end register_op :tile do |_context, _tensor, inputs| input, multiples = inputs rank = get_rank(input) raise '1D or higher tensor required' if rank.zero? raise "invalid multiple size passed #{rank} != #{multiples.size}" if rank != multiples.size tile = tile_arr(input, 0, multiples) tile.nil? ? [] : tile end register_op :flow_group, noop: true do |context, tensor, inputs| inputs.each { |input| global_eval(tensor, input, context) } nil # no output end register_op :softmax do |_context, _tensor, inputs| softmax(inputs[0]) end register_op :save_v2 do |context, tensor, inputs| # prefix, tensor_names, shape_and_slices = inputs[0..3] end register_op :restore_v2 do |context, tensor, inputs| # prefix, tensor_names, shape_and_slices = inputs[0..3] end register_op :softmax_grad do |_context, _tensor, inputs| input, grad = inputs softmax_input = softmax(input) input_shape = shape_eval(input) last_dimen_list = last_axis(softmax_input) last_grad_list = last_axis(grad) func = lambda { |list, last_grad| f_grad = softmax_grad(list) f_grad.transpose.each.collect do |row| sum = 0.0 row.each_with_index do |r, g_index| sum += r * last_grad[g_index] end sum end } if input_shape.size == 1 func.call(last_dimen_list, last_grad_list) else arr = last_dimen_list.zip(last_grad_list).collect do |list, last_grad| func.call(list, last_grad) end TensorShape.reshape(arr.flatten, input_shape) end end register_op :check_numerics do |context, tensor, inputs| message = tensor.options[:message] f = lambda { |t, _b| raise TensorStream::InvalidArgumentError, "#{message} Invalid argument" if t.nan? || t.infinite? t } call_op(:check_numerics, inputs[0], context, f) end def eval_operation(tensor, child_context) return @context[tensor.name] if @context.key?(tensor.name) # puts "ruby: #{tensor.name}" invoke(tensor, child_context).tap do |result| if tensor.breakpoint a = resolve_placeholder(tensor.inputs[0], child_context) if tensor.inputs && tensor.inputs[0] b = resolve_placeholder(tensor.inputs[1], child_context) if tensor.inputs && tensor.inputs[1] a = complete_eval(a, child_context) b = complete_eval(b, child_context) tensor.breakpoint.call(tensor, a, b, complete_eval(result, child_context)) end if @log_intermediates @context[:compute_history] << { name: tensor.name, type: tensor.data_type, shape: shape_eval(result), source: tensor.source, description: tensor.to_math(true, 1), value: result } end @context[tensor.name] = result end rescue EvaluatorExcecutionException => e raise e, "error #{e.message} while evaluating #{tensor.name} : #{tensor.to_math(true, 1)} defined at #{tensor.source}" rescue TensorStreamError => e raise e, "error #{e.message} while evaluating #{tensor.name} : #{tensor.to_math(true, 1)} defined at #{tensor.source}" rescue StandardError => e a = resolve_placeholder(tensor.inputs[0], child_context) if tensor.inputs && tensor.inputs[0] b = resolve_placeholder(tensor.inputs[1], child_context) if tensor.inputs && tensor.inputs[1] puts e.message puts e.backtrace.join("\n") # shape_a = a.shape.shape if a # shape_b = b.shape.shape if b # dtype_a = a.data_type if a # dtype_b = b.data_type if b a = complete_eval(a, child_context) b = complete_eval(b, child_context) # puts "name: #{tensor.given_name}" # # puts "op: #{tensor.to_math(true, 1)}" # puts "A #{shape_a} #{dtype_a}: #{a}" if a # puts "B #{shape_b} #{dtype_b}: #{b}" if b # dump_intermediates if @log_intermediates # File.write('/home/jedld/workspace/tensor_stream/samples/error.graphml', TensorStream::Graphml.new.get_string(tensor, @session)) # File.write('/Users/josephemmanueldayo/workspace/gradients.graphml', TensorStream::Graphml.new.get_string(tensor, @session)) raise EvaluatorExcecutionException.new(e, tensor), "error #{e.message} while evaluating #{tensor.name} : #{tensor.to_math(true, 1)} defined at #{tensor.source}" end def eval_tensor(tensor, child_context) return tensor unless tensor.is_a?(Tensor) cache_key = "#{tensor.graph.object_id}_ruby_#{tensor.name}" return @context[cache_key] if @context.key?(cache_key) return @context[:_cache][cache_key] if @context[:_cache] && @context[:_cache].key?(tensor.name) if tensor.value.is_a?(Array) tensor.value.collect do |input| input.is_a?(Tensor) ? run(input, child_context) : input end else tensor.value.is_a?(Tensor) ? run(tensor.value, child_context) : tensor.value end.tap do |result| @context[cache_key] = result @context[:_cache][cache_key] = result if @context[:_cache] && tensor.is_const end end def convert_from_buffer(_tensor, result) result.buffer end private def get_op_with_axis(a, target_axis, current_axis, output_type, op = ->(t, u) { t > u }) if target_axis == current_axis if a[0].is_a?(Array) (0...a[0].size).each.collect do |column_index| max = nil max_index = 0 a.each_with_index do |row, row_index| if max.nil? || op.call(row[column_index], max) max = row[column_index] max_index = row_index end end Tensor.cast_dtype(max_index, output_type) end else max = nil max_index = 0 a.each_with_index do |x, index| if max.nil? || op.call(x, max) max = x max_index = index end end Tensor.cast_dtype(max_index, output_type) end else a.collect do |row| get_op_with_axis(row, target_axis, current_axis + 1, output_type, op) end end end def reduction(child_context, tensor, func) val = global_eval(tensor, tensor.inputs[0], child_context) axis = global_eval(tensor, tensor.inputs[1], child_context) keep_dims = global_eval(tensor, tensor.options[:keepdims], child_context) reduce(val, axis, keep_dims, func) end def arr_pad(arr, paddings, data_type = :float32, rank = 0) raise "padding #{paddings[rank]} needs to have to elements [before, after]" if paddings[rank].size != 2 before = paddings[rank][0] after = paddings[rank][1] pad_value = fp_type?(data_type) ? 0.0 : 0 if arr[0].is_a?(Array) next_dim_elem = arr.collect { |a| arr_pad(a, paddings, data_type, rank + 1) } padding = deep_dup_array(next_dim_elem[0], pad_value) Array.new(before) { padding } + next_dim_elem + Array.new(after) { padding } else Array.new(before) { pad_value } + arr + Array.new(after) { pad_value } end end def deep_dup_array(arr, value = nil) if arr.is_a?(Array) arr.dup.collect do |a| deep_dup_array(a, value) end else value.nil? ? arr : value end end def call_op(op, a, child_context, func) a = complete_eval(a, child_context) process_function_op(a, func) rescue FullEvalNotPossible TensorStream.send(op.to_sym, a) end def call_vector_op(tensor, op, a, b, child_context, func) process_vector_math_op(tensor, a, b, child_context, func) rescue FullEvalNotPossible TensorStream.send(op.to_sym, a, b) end def process_vector_math_op(tensor, a, b, child_context, op) eval_a = global_eval(tensor, a, child_context) unless a.nil? eval_b = global_eval(tensor, b, child_context) unless b.nil? raise FullEvalNotPossible.new, "full eval not possible for #{a.name}" if eval_a.is_a?(Tensor) || eval_b.is_a?(Tensor) # ruby scalar eval_a, eval_b = broadcast(eval_a, eval_b) vector_op(eval_a, eval_b, op) # if get_rank(eval_a).zero? # if get_rank(eval_b).zero? # op.call(eval_a, eval_b) # else # vector_op(eval_b, eval_a, op, true) # end # else # vector_op(eval_a, eval_b, op) # end end def _rank_from_shape(shape) shape.is_a?(Array) ? shape.size : 0 end def concat_array(values, axis) combined_array = values.shift axis = get_rank(combined_array) - 1 if axis == -1 values.each do |v| combined_array = concat(combined_array, v, axis) end combined_array end def concat(a, b, axis) if axis.zero? a + b else a.each_with_index.collect do |i, index| concat(i, b[index], axis - 1) end end end def resolve_placeholder(placeholder, _execution_context = {}) return nil if placeholder.nil? var = if placeholder.is_a?(Placeholder) @context[placeholder.name.to_sym].tap do |c| raise "missing placeholder #{placeholder.name}" if c.nil? end else placeholder end return var unless placeholder.is_a?(Tensor) Tensor.cast_dtype(var, placeholder.data_type) end # handle 3 tensor math operations def call_3way_vector_op(v_a, v_b, v_c, child_context, op = ->(a, b, c) { a + b + c }) return op.call(v_a, v_b, v_c) unless v_a.is_a?(Array) v_a.each_with_index.collect do |v1, index| v2 = v_b[index] v3 = v_c.is_a?(Array) ? v_c[index] : v_c if v1.is_a?(Array) call_3way_vector_op(v1, v2, v3, child_context, op) else op.call(v1, v2, v3) end end end def all_true?(arr) if arr.is_a?(Array) arr.each do |a| return false unless all_true?(a) end return true end !!arr end def generate_vector(shape, dtype: :float32, generator:) if shape.is_a?(Integer) Array.new(shape) do generator.call end elsif shape.size > 1 Array.new(shape[0]) do generate_vector(shape[1..shape.size], generator: generator, dtype: dtype) end elsif shape.size == 1 Array.new(shape[0]) do generator.call end elsif shape.size.zero? generator.call end end def _get_randomizer(tensor, seed) if tensor.graph.random_seed && seed Random.new(tensor.graph.random_seed ^ seed) elsif tensor.graph.random_seed @session.randomizer[tensor.graph.object_id] ||= Random.new(tensor.graph.random_seed) @session.randomizer[tensor.graph.object_id] elsif seed @session.randomizer[tensor.operation] ||= Random.new(seed) @session.randomizer[tensor.operation] else Random.new end end def dump_intermediates arr = [] arr << "============== start ===================" @context[:compute_history].each_with_index do |history, _index| arr << "------------------------------------" arr << history[:name] arr << "#{history[:type]} #{history[:shape]}" arr << history[:source] arr << history[:description] arr << "" arr << history[:value].to_json arr << "------------------------------------" end arr << "============== end =====================" str = arr.join("\n") File.write('/tmp/intermediates.txt', str) end end end end TensorStream::Evaluator.register_evaluator(TensorStream::Evaluator::RubyEvaluator, 'ruby')