require 'threadify'

a = Array.new(1024){|i| i}

value =
  a.threadify do |i|
    threadify! i if i == 512 
  end

p value
