-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy path3copy.lisp
43 lines (32 loc) · 1.38 KB
/
3copy.lisp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#|
This file is a part of NUMCL project.
Copyright (c) 2019 IBM Corporation
SPDX-License-Identifier: LGPL-3.0-or-later
NUMCL is free software: you can redistribute it and/or modify it under the terms
of the GNU General Public License as published by the Free Software
Foundation, either version 3 of the License, or (at your option) any
later version.
NUMCL 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 General Public License for more details.
You should have received a copy of the GNU General Public License along with
NUMCL. If not, see <http://www.gnu.org/licenses/>.
|#
(in-package :numcl.impl)
;; copy
(declaim (inline copy))
(defun copy (array)
(multiple-value-bind (base-array offset) (array-displacement array)
(multiple-value-bind (a2 base-array2) (empty-like array)
;; empty array is 0-offset
(specializing (base-array base-array2 offset) ()
(replace base-array2 base-array
:start1 offset
:end1 (+ offset (array-total-size array))))
(values a2 base-array2))))
;; astype
(declaim (inline astype))
(defun astype (array type)
(multiple-value-bind (a base-array2) (empty-like array :type type)
(map-into base-array2 (lambda (x) (%coerce x type)) array)
(values a base-array2)))