(src, dst)
| 36 | assert (dst_dic[k].data == src_dic[k].data).all() |
| 37 | |
| 38 | def copy_from_param(src, dst): |
| 39 | assert src.data.shape == dst.data.shape |
| 40 | dst.data = src.data |
| 41 | |
| 42 | def copy_layer_norm(src, dst): |
| 43 | src_ln = [] |
no outgoing calls
no test coverage detected