forked from cudamat/cudamat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cudamat.py
1400 lines (1065 loc) · 41.7 KB
/
cudamat.py
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import os, pdb, platform, time, warnings
import ctypes as ct
import numpy as np
MAX_ONES = 1024*256
if platform.system() == 'Windows':
_cudamat = ct.cdll.LoadLibrary('libcudamat.dll')
else:
_cudamat = ct.cdll.LoadLibrary(os.path.join(os.path.dirname(__file__) or os.path.curdir, 'libcudamat.so'))
_cudamat.get_last_cuda_error.restype = ct.c_char_p
_cudamat.cublas_init.restype = ct.c_int
_cudamat.cublas_shutdown.restype = ct.c_int
_cudamat.cuda_set_device.restype = ct.c_int
_cudamat.init_random.restype = ct.c_int
_cudamat.init_empty.restype = ct.c_int
_cudamat.reshape.restype = ct.c_int
_cudamat.copy_to_host.restype = ct.c_int
_cudamat.allocate_device_memory = ct.c_int
_cudamat.copy_to_device.restype = ct.c_int
_cudamat.copy_on_device.restype = ct.c_int
_cudamat.free_device_memory.restype = ct.c_int
_cudamat.get_slice.restype = ct.c_int
_cudamat.get_row_slice.restype = ct.c_int
_cudamat.set_row_slice.restype = ct.c_int
_cudamat.copy_transpose.restype = ct.c_int
_cudamat.get_vector_slice.restype = ct.c_int
_cudamat.fill_with_rand.restype = ct.c_int
_cudamat.fill_with_randn.restype = ct.c_int
_cudamat.add_col_vec.restype = ct.c_int
_cudamat.add_col_mult.restype = ct.c_int
_cudamat.add_row_vec.restype = ct.c_int
_cudamat.mult_by_col_vec.restype = ct.c_int
_cudamat.mult_by_row_vec.restype = ct.c_int
_cudamat.divide_by_col_vec.restype = ct.c_int
_cudamat.divide_by_row_vec.restype = ct.c_int
_cudamat.less_than.restype = ct.c_int
_cudamat.less_than_scalar.restype = ct.c_int
_cudamat.greater_than.restype = ct.c_int
_cudamat.greater_than_scalar.restype = ct.c_int
_cudamat.equals.restype = ct.c_int
_cudamat.equals_scalar.restype = ct.c_int
_cudamat.minimum.restype = ct.c_int
_cudamat.minimum_scalar.restype = ct.c_int
_cudamat.maximum.restype = ct.c_int
_cudamat.maximum_scalar.restype = ct.c_int
_cudamat.min_by_axis.restype = ct.c_int
_cudamat.max_by_axis.restype = ct.c_int
_cudamat.argmin_by_axis.restype = ct.c_int
_cudamat.argmax_by_axis.restype = ct.c_int
_cudamat.sign.restype = ct.c_int
_cudamat.apply_sigmoid.restype = ct.c_int
_cudamat.apply_tanh.restype = ct.c_int
_cudamat.apply_soft_threshold.restype = ct.c_int
_cudamat.apply_abs.restype = ct.c_int
_cudamat.apply_log_1_plus_exp.restype = ct.c_int
_cudamat.apply_log.restype = ct.c_int
_cudamat.apply_exp.restype = ct.c_int
_cudamat.apply_gamma.restype = ct.c_int
_cudamat.apply_lgamma.restype = ct.c_int
_cudamat.apply_sqrt.restype = ct.c_int
_cudamat.apply_pow.restype = ct.c_int
_cudamat.apply_pow_matrix.restype = ct.c_int
_cudamat.reciprocal.restype = ct.c_int
_cudamat.add_elementwise.restype = ct.c_int
_cudamat.subtract_elementwise.restype = ct.c_int
_cudamat.divide_elementwise.restype = ct.c_int
_cudamat.mult_elementwise.restype = ct.c_int
_cudamat.assign_scalar.restype = ct.c_int
_cudamat.mult_by_scalar.restype = ct.c_int
_cudamat.divide_by_scalar.restype = ct.c_int
_cudamat.add_scalar.restype = ct.c_int
_cudamat.euclid_norm.restype = ct.c_float
_cudamat.manhattan_norm.restype = ct.c_float
_cudamat.selectRows.restype = ct.c_int
_cudamat.setSelectedRows.restype = ct.c_int
_cudamat.vdot.restype = ct.c_float
_cudamat.dot.restype = ct.c_int
_cudamat.where.restype = ct.c_int
def deprecated(func):
"""This is a decorator which can be used to mark functions
as deprecated. It will result in a warning being emmitted
when the function is used."""
def newFunc(*args, **kwargs):
warnings.warn("Call to deprecated function %s." % func.__name__,
category=DeprecationWarning)
return func(*args, **kwargs)
newFunc.__name__ = func.__name__
newFunc.__doc__ = func.__doc__
newFunc.__dict__.update(func.__dict__)
return newFunc
class CUDAMatException(Exception):
pass
def get_last_cuda_error():
return str(_cudamat.get_last_cuda_error())
def generate_exception(err_code):
"""
Return a CUDAMatException object based on the error code err_code.
"""
if err_code == -1:
return CUDAMatException("Incompatible matrix dimensions.")
elif err_code == -2:
return CUDAMatException("CUBLAS error.")
elif err_code == -3:
return CUDAMatException("CUDA error: " + get_last_cuda_error())
elif err_code == -4:
return CUDAMatException("Operation not supported on views.")
elif err_code == -5:
return CUDAMatException("Operation not supported on transposed matrices.")
elif err_code == -6:
return CUDAMatException("")
elif err_code == -7:
return CUDAMatException("Incompatible transposedness.")
elif err_code == -8:
return CUDAMatException("Matrix is not in device memory.")
elif err_code == -9:
return CUDAMatException("Operation not supported.")
class cudamat(ct.Structure):
_fields_ = [('data_host', ct.POINTER(ct.c_float)),
('data_device', ct.POINTER(ct.c_float)),
('on_device', ct.c_int),
('on_host', ct.c_int),
('size', ct.c_int * 2),
('is_trans', ct.c_int),
('owns_data', ct.c_int)]
class rnd_struct(ct.Structure):
_fields_ = [('dev_rnd_mults', ct.POINTER(ct.c_uint)),
('dev_rnd_words', ct.POINTER(ct.c_longlong))]
class TransposedCUDAMatrix(object):
def __init__(self, mat):
self.mat = cudamat()
ct.memmove(ct.pointer(self.mat), ct.pointer(mat), ct.sizeof(self.mat))
self.mat.is_trans = 1
self.p_mat = ct.pointer(self.mat)
class CUDAMatrix(object):
"""
A CUDAMatrix object represents a matrix of single precision floating point
numbers on a GPU.
"""
def __init__(self, array, copy_to_device = True, copy_on_host = True):
"""
Initializes a new matrix object in one of two ways. If array is a numpy
ndarray, memory for a matrix with the same dimensions is allocated on
the GPU. If the copy_to_device flag is set to True, the GPU matrix is
initialized with the given ndarray. If the copy_on_host flag is set to
True, a copy of the matrix will be created in host memory even if the
matrix is of the correct type (float32, Fortran-contiguous order).
If array is not an ndarray, it must be a cudamat structure (typically
the user will never use this way of calling __init__).
"""
if type(array) in [np.ndarray, np.memmap]:
# Convert array to float32 in FORTRAN order
array = reformat(array, copy = copy_on_host)
# Initialize as a ndarray-tied matrix.
self.mat = cudamat()
self.size = self.mat.size
self.p_mat = ct.pointer(self.mat)
self.numpy_array = array
_cudamat.init_from_array(self.p_mat, array.ctypes.data_as(ct.POINTER(ct.c_float)), ct.c_int(array.shape[0]), ct.c_int(array.shape[1]))
if copy_to_device:
err_code = _cudamat.copy_to_device(self.p_mat)
if err_code:
raise generate_exception(err_code)
else:
# Initialize based on existing cudamat structure.
mat = array
self.mat = mat
self.p_mat = ct.pointer(self.mat)
self.T = TransposedCUDAMatrix(self.mat)
# Keep a reference to free device memory in case of a crash.
self.__free_device_memory = _cudamat.free_device_memory
def __del__(self):
try:
if 'p_mat' in self.__dict__:
err_code = self.__free_device_memory(self.p_mat)
if err_code:
raise generate_exception(err_code)
except AttributeError:
pass
@staticmethod
def init_random(seed = 0):
"""
Initialize and seed the random number generator.
"""
NUM_RND_STREAMS = 96*128
CUDAMatrix.rndInitialized = 1
CUDAMatrix.rnd_state = rnd_struct()
CUDAMatrix.rnd_state_p = ct.pointer(CUDAMatrix.rnd_state)
cudamat_path = os.path.join(os.path.abspath(os.path.dirname(__file__)), 'rnd_multipliers_32bit.txt')
err_code = _cudamat.init_random(CUDAMatrix.rnd_state_p, ct.c_int(seed), cudamat_path)
if err_code:
raise generate_exception(err_code)
@property
def shape(self):
return (self.mat.size[0], self.mat.size[1])
def reshape(self, shape):
"""
Reshapes self to have the given shape. The number of elements cannot
change as this only changes how the contents are interpreted.
"""
m = ct.c_uint(shape[0])
n = ct.c_uint(shape[1])
# Reshape the default matrix
err_code = _cudamat.reshape(self.p_mat, m, n)
if err_code:
raise generate_exception(err_code)
# Reshape the transposed matrix
err_code = _cudamat.reshape(self.T.p_mat, m, n)
if err_code:
raise generate_exception(err_code)
# Reshape the CPU matrix
if self.mat.on_host:
self.numpy_array = np.reshape(self.numpy_array, shape, order='F')
return self
def asarray(self):
"""
Copies the matrix to an ndarray on the CPU and returns it.
"""
self.copy_to_host()
return self.numpy_array
def copy_to_device(self):
"""
Copy the matrix to the GPU.
"""
err_code = _cudamat.copy_to_device(self.p_mat)
if err_code:
raise generate_exception(err_code)
def copy_to_host(self):
"""
Copy the matrix to the CPU.
"""
if not self.mat.on_host:
# allocate host storage if necessary
m = self.mat.size[0]
n = self.mat.size[1]
self.numpy_array = np.empty((m, n), dtype=np.float32, order = 'F')
self.mat.data_host = self.numpy_array.ctypes.data_as(ct.POINTER(ct.c_float))
self.mat.on_host = 1
err_code = _cudamat.copy_to_host(self.p_mat)
if err_code:
raise generate_exception(err_code)
def copy(self, include_host = False):
"""
Create a copy of the matrix on GPU. If include_host is True, also
creates a copy of the matrix on CPU if there was any.
"""
new_mat = empty(self.shape).assign(self)
if include_host and self.mat.on_host:
new_mat.numpy_array = self.numpy_array.copy()
new_mat.mat.data_host = new_mat.numpy_array.ctypes.data_as(ct.POINTER(ct.c_float))
new_mat.mat.on_host = 1
return new_mat
def assign(self, val):
"""Assign val to self, where val can be a scalar or a CUDAMatrix
with the same dimensions as self. """
if isinstance(val, CUDAMatrix):
err_code = _cudamat.copy_on_device(val.p_mat, self.p_mat)
elif isinstance(val, (int, float)):
err_code = _cudamat.assign_scalar(self.p_mat, ct.c_float(val))
else:
raise ValueError, "Assigned value must be of type CUDAMatrix, int, or float."
if err_code:
raise generate_exception(err_code)
return self
def free_device_memory(self):
"""
Free memory used up by the matrix on the GPU.
"""
err_code = _cudamat.free_device_memory(self.p_mat)
if err_code:
raise generate_exception(err_code)
def set_trans(self, is_trans):
"""
Set the transposedness flag to is_trans.
"""
_cudamat.set_transpose(self.p_mat, ct.c_int(1 * is_trans))
def slice(self, first_col, last_col, include_host = False):
"""
Creates a view into a consecutive range of columns of an existing
matrix on GPU. If include_host is set to True, also creates a view
into the CPU copy of the matrix (i.e., the numpy_array).
"""
mat = cudamat()
if self.mat.size[0] == 1 or self.mat.size[1] == 1:
err_code = _cudamat.get_vector_slice(self.p_mat, ct.pointer(mat), ct.c_int(first_col), ct.c_int(last_col))
else:
err_code = _cudamat.get_slice(self.p_mat, ct.pointer(mat), ct.c_int(first_col), ct.c_int(last_col))
if err_code:
raise generate_exception(err_code)
new_mat = CUDAMatrix(mat)
try:
new_mat.sliceof = self.sliceof
except:
new_mat.sliceof = self
# reproduce the slice on the host as well (if requested)
if include_host and self.mat.on_host:
new_mat.numpy_array = self.numpy_array[:, first_col:last_col]
new_mat.mat.data_host = new_mat.numpy_array.ctypes.data_as(ct.POINTER(ct.c_float))
new_mat.mat.on_host = 1
return new_mat
def get_col_slice(self, first_col, last_col, target = None):
"""
Get the columns with indices first_col through last_col. If a target
is provided, columns are copied into the target. Otherwise, returns a
view into the existing memory on GPU.
"""
col_slice = self.slice(first_col, last_col)
if target:
target.assign(col_slice)
return target
else:
return col_slice
def set_col_slice(self, first_col, last_col, mat):
"""
Assign the contents of mat to the columns with indices first_col
through last_col.
"""
self.slice(first_col, last_col).assign(mat)
return self
def get_row_slice(self, start, end, target = None):
"""
Get the rows with indices start through end. If target is not provided
memory for a new matrix will be allocated.
"""
width = self.shape[1]
if not target:
target = empty((end-start, width))
err_code = _cudamat.get_row_slice(self.p_mat, target.p_mat, ct.c_int(start), ct.c_int(end))
if err_code:
raise generate_exception(err_code)
return target
def set_row_slice(self, start, end, mat):
"""
Assign the contents of mat to the rows with indices start through end.
"""
err_code = _cudamat.set_row_slice(mat.p_mat, self.p_mat, ct.c_int(start), ct.c_int(end))
if err_code:
raise generate_exception(err_code)
return self
def transpose(self, target = None):
"""
Return a transposed copy of the matrix.
"""
if not target:
target = empty((self.shape[1], self.shape[0]))
err_code = _cudamat.copy_transpose(self.p_mat, target.p_mat)
if err_code:
raise generate_exception(err_code)
return target
def fill_with_rand(self):
"""
Fill matrix on the GPU with random numbers drawn from the uniform
distribution over the (0,1) interval.
"""
err_code = _cudamat.fill_with_rand(CUDAMatrix.rnd_state_p, self.p_mat)
if err_code:
raise generate_exception(err_code)
return self
def fill_with_randn(self):
"""
Fill matrix on the GPU with random numbers drawn from the standard normal
distribution.
"""
err_code = _cudamat.fill_with_randn(CUDAMatrix.rnd_state_p, self.p_mat)
if err_code:
raise generate_exception(err_code)
return self
def add_col_vec(self, vec, target = None):
"""
Add vector vec to every column of the matrix. If a target is provided,
it is used to store the result instead of self.
"""
if not target:
target = self
err_code = _cudamat.add_col_vec(self.p_mat, vec.p_mat, target.p_mat)
if err_code:
raise generate_exception(err_code)
return target
def add_col_mult(self, vec, mult, target = None):
"""
Add a multiple of vector vec to every column of the matrix. If a target
is provided, it is used to store the result instead of self.
"""
if not target:
target = self
err_code = _cudamat.add_col_mult(self.p_mat, vec.p_mat, target.p_mat, ct.c_float(mult))
if err_code:
raise generate_exception(err_code)
return target
def add_row_vec(self, vec, target = None):
"""
Add vector vec to every row of the matrix. If a target is provided,
it is used to store the result instead of self.
"""
if not target:
target = self
err_code = _cudamat.add_row_vec(self.p_mat, vec.p_mat, target.p_mat)
if err_code:
raise generate_exception(err_code)
return target
def mult_by_col(self, vec, target = None):
"""
Multiply vector vec into every column of the matrix. If a target is
provided, it is used to store the result instead of self.
"""
if not target:
target = self
err_code = _cudamat.mult_by_col_vec(self.p_mat, vec.p_mat, target.p_mat)
if err_code:
raise generate_exception(err_code)
return target
def mult_by_row(self, vec, target = None):
"""
Multiply vector vec into every row of the matrix. If a target is
provided, it is used to store the result instead of self.
"""
if not target:
target = self
err_code = _cudamat.mult_by_row_vec(self.p_mat, vec.p_mat, target.p_mat)
if err_code:
raise generate_exception(err_code)
return target
def div_by_col(self, vec, target = None):
"""
Divide every column of the matrix by vector vec. If a target is
provided, it is used to store the result instead of self.
"""
if not target:
target = self
err_code = _cudamat.divide_by_col_vec(self.p_mat, vec.p_mat, target.p_mat)
if err_code:
raise generate_exception(err_code)
return target
def div_by_row(self, vec, target = None):
"""
Divide every row of the matrix by vector vec. If a target is
provided, it is used to store the result instead of self.
"""
if not target:
target = self
err_code = _cudamat.divide_by_row_vec(self.p_mat, vec.p_mat, target.p_mat)
if err_code:
raise generate_exception(err_code)
return target
def sum(self, axis, target = None, mult = 1.):
"""
Sum the matrix along the given dimension, where 0 represents the leading
dimension and 1 represents the non-leading dimension. If a target is
not provided, a new vector is created for storing the result. The result
is multiplied by the given factor mult (defaults to 1).
"""
return sum(self, axis, target, mult)
def mean(self, axis, target = None):
"""
Compute the mean of the matrix along the given dimension, where 0
represents the leading dimension and 1 represents the non-leading
dimension. If a target is not provided, a new vector is created for
storing the result.
"""
return mean(self, axis, target)
def add_sums(self, mat, axis, mult = 1., beta = 1.):
"""
Add a multiple of the sums of the matrix mat along the given dimension
to self. Self is scaled by beta before adding anything.
"""
m = _cudamat.get_leading_dimension(mat.p_mat)
n = _cudamat.get_nonleading_dimension(mat.p_mat)
if axis == 0:
# sum along leading dimension
left = CUDAMatrix.ones.slice(0, m)
left.set_trans(True)
right = mat
elif axis == 1:
# sum along non-leading dimension
left = mat
right = CUDAMatrix.ones.slice(0, n)
err_code = _cudamat.dot(left.p_mat, right.p_mat, self.p_mat, ct.c_float(beta), ct.c_float(mult))
if err_code:
raise generate_exception(err_code)
return self
def less_than(self, val, target = None):
"""
Perform the operation target = 1. * (self < val), where val can be a matrix or a scalar.
"""
if not target:
target = self
if isinstance(val, (int, float)):
err_code = _cudamat.less_than_scalar(self.p_mat, ct.c_float(val), target.p_mat)
else:
err_code = _cudamat.less_than(self.p_mat, val.p_mat, target.p_mat)
if err_code:
raise generate_exception(err_code)
return target
def greater_than(self, val, target = None):
"""
Perform the operation target = 1. * (self > val), where val can be a matrix or a scalar.
"""
if not target:
target = self
if isinstance(val, (int, float)):
err_code = _cudamat.greater_than_scalar(self.p_mat, ct.c_float(val), target.p_mat)
else:
err_code = _cudamat.greater_than(self.p_mat, val.p_mat, target.p_mat)
if err_code:
raise generate_exception(err_code)
return target
def equals(self, val, target = None):
"""
Perform the operation target = 1. * (self == val), where val can be a matrix or a scalar.
"""
if not target:
target = self
if isinstance(val, (int, float)):
err_code = _cudamat.equals_scalar(self.p_mat, ct.c_float(val), target.p_mat)
else:
err_code = _cudamat.equals(self.p_mat, val.p_mat, target.p_mat)
if err_code:
raise generate_exception(err_code)
return target
def minimum(self, val, target = None):
"""
Perform the element-wise operation target = min(self, val), where
val can be a matrix or a scalar.
"""
if not target:
target = self
if isinstance(val, (int, float)):
err_code = _cudamat.minimum_scalar(self.p_mat, ct.c_float(val), target.p_mat)
else:
err_code = _cudamat.minimum(self.p_mat, val.p_mat, target.p_mat)
if err_code:
raise generate_exception(err_code)
return target
def maximum(self, val, target = None):
"""
Perform the element-wise operation target = max(self, val), where
val can be a matrix or a scalar.
"""
if not target:
target = self
if isinstance(val, (int, float)):
err_code = _cudamat.maximum_scalar(self.p_mat, ct.c_float(val), target.p_mat)
else:
err_code = _cudamat.maximum(self.p_mat, val.p_mat, target.p_mat)
if err_code:
raise generate_exception(err_code)
return target
def min(self, axis, target = None):
"""
Find the minimum value along the given dimension, where 0 represents the
leading dimension and 1 represents the non-leading dimension. If a target
is not prvided, a new vector is created for storing the result.
"""
m, n = self.shape
if axis == 0:
if not target:
target = empty((1, n))
elif axis == 1:
if not target:
target = empty((m, 1))
err_code = _cudamat.min_by_axis(self.p_mat, target.p_mat, ct.c_int(axis))
if err_code:
raise generate_exception(err_code)
return target
def max(self, axis, target = None):
"""
Find the maximum value along the given dimension, where 0 represents the
leading dimension and 1 represents the non-leading dimension. If a target
is not prvided, a new vector is created for storing the result.
"""
m, n = self.shape
if axis == 0:
if not target:
target = empty((1, n))
elif axis == 1:
if not target:
target = empty((m, 1))
err_code = _cudamat.max_by_axis(self.p_mat, target.p_mat, ct.c_int(axis))
if err_code:
raise generate_exception(err_code)
return target
def argmin(self, axis, target = None):
"""
Find the index of the minimum value along the given dimension, where 0
represents the leading dimension and 1 represents the non-leading
dimension. If a target is not provided, a new vector is created for
storing the result.
"""
m, n = self.shape
if axis == 0:
if not target:
target = empty((1, n))
elif axis == 1:
if not target:
target = empty((m, 1))
err_code = _cudamat.argmin_by_axis(self.p_mat, target.p_mat, ct.c_int(axis))
if err_code:
raise generate_exception(err_code)
return target
def argmax(self, axis, target = None):
"""
Find the index of the maximum value along the given dimension, where 0
represents the leading dimension and 1 represents the non-leading
dimension. If a target is not provided, a new vector is created for
storing the result.
"""
m, n = self.shape
if axis == 0:
if not target:
target = empty((1, n))
elif axis == 1:
if not target:
target = empty((m, 1))
err_code = _cudamat.argmax_by_axis(self.p_mat, target.p_mat, ct.c_int(axis))
if err_code:
raise generate_exception(err_code)
return target
def sign(self, target = None):
"""
Find the sign of each element of the matrix.
"""
if not target:
target = empty((self.mat.size[0], self.mat.size[1]))
err_code = _cudamat.sign(self.p_mat, target.p_mat)
if err_code:
raise generate_exception(err_code)
return target
def apply_sigmoid(self, target = None):
"""
Apply the logistic sigmoid to each element of the matrix.
"""
return sigmoid(self, target)
def apply_tanh(self, target = None):
"""
Apply the tanh to each element of the matrix.
"""
return tanh(self, target)
def apply_soft_threshold(self, alpha, target = None):
"""
Apply the soft threshold function to each element of the matrix:
x = sign(x) * max(0, abs(x) - alpha)
"""
return soft_threshold(self, alpha, target)
def reciprocal(self, target = None):
"""
Find the reciprocal of each element of the matrix.
"""
if not target:
target = self
err_code = _cudamat.reciprocal(self.p_mat, target.p_mat)
if err_code:
raise generate_exception(err_code)
return target
def dot(self, mat2, target = None):
"""
Multiply the matrix by mat2 from the right.
"""
return dot(self, mat2, target)
def add_dot(self, m1, m2, mult = 1., beta = 1.):
"""
Add the dot product of m1 and m2 to the matrix, scaled by mult.
Self is scaled by beta before adding anything.
"""
err_code = _cudamat.dot(m1.p_mat, m2.p_mat, self.p_mat, ct.c_float(beta), ct.c_float(mult))
if err_code:
raise generate_exception(err_code)
return self
def subtract_dot(self, m1, m2, mult = 1., beta = 1.):
"""
Subtract the dot product of m1 and m2 from the matrix, scaled by mult.
Self is scaled by beta before subtracting anything.
"""
return self.add_dot(m1, m2, mult = -1. * mult, beta = beta)
def add_mult(self, mat2, alpha = 1.):
"""
Add multiple of mat2 to the matrix.
"""
err_code = _cudamat.add_mult(self.p_mat, mat2.p_mat, ct.c_float(alpha))
if err_code:
raise generate_exception(err_code)
return self
def subtract_mult(self, mat2, alpha = 1.):
"""
Subtract a multiple of mat2 from the matrix.
"""
err_code = _cudamat.add_mult(self.p_mat, mat2.p_mat, ct.c_float(-1. * alpha))
if err_code:
raise generate_exception(err_code)
return self
def add(self, val, target = None):
"""Add val to self, where val can be a scalar or a CUDAMatrix with the
same dimensions as self. """
if not target:
target = self
if isinstance(val, CUDAMatrix):
err_code = _cudamat.add_elementwise(self.p_mat, val.p_mat, target.p_mat)
elif isinstance(val, (int, float)):
err_code = _cudamat.add_scalar(self.p_mat, ct.c_float(val), target.p_mat)
else:
raise ValueError, "Value must be of type CUDAMatrix, int, or float."
if err_code:
raise generate_exception(err_code)
return target
def subtract(self, val, target = None):
"""Subtract val from self, where val can be a scalar or a CUDAMatrix with
the same dimensions as self. """
if not target:
target = self
if isinstance(val, CUDAMatrix):
err_code = _cudamat.subtract_elementwise(self.p_mat, val.p_mat, target.p_mat)
elif isinstance(val, (int, float)):
err_code = _cudamat.add_scalar(self.p_mat, ct.c_float(-1*val), target.p_mat)
else:
raise ValueError, "Value must be of type CUDAMatrix, int, or float."
if err_code:
raise generate_exception(err_code)
return target
def divide(self, val, target = None):
"""Divide self by val, where val can be a scalar or a CUDAMatrix with the
same dimensions as self. """
if not target:
target = self
if isinstance(val, CUDAMatrix):
err_code = _cudamat.divide_elementwise(self.p_mat, val.p_mat, target.p_mat)
elif isinstance(val, (int, float)):
err_code = _cudamat.divide_by_scalar(self.p_mat, ct.c_float(val), target.p_mat)
else:
raise ValueError, "Value must be of type CUDAMatrix, int, or float."
if err_code:
raise generate_exception(err_code)
return target
def mult(self, val, target = None):
"""Multiply self by val, where val can be a scalar or a CUDAMatrix with
the same dimensions as self. """
if not target:
target = self
if isinstance(val, CUDAMatrix):
err_code = _cudamat.mult_elementwise(self.p_mat, val.p_mat, target.p_mat)
elif isinstance(val, (int, float)):
err_code = _cudamat.mult_by_scalar(self.p_mat, ct.c_float(val), target.p_mat)
else:
raise ValueError, "Value must be of type CUDAMatrix, int, or float."
if err_code:
raise generate_exception(err_code)
return target
@deprecated
def assign_scalar(self, alpha):
"""
Assign scalar alpha to every element of the matrix.
"""
err_code = _cudamat.assign_scalar(self.p_mat, ct.c_float(alpha))
if err_code:
raise generate_exception(err_code)
return self
@deprecated
def mult_by_scalar(self, alpha, target = None):
"""
Multiply the matrix by a scalar.
"""
if not target:
target = self
err_code = _cudamat.mult_by_scalar(self.p_mat, ct.c_float(alpha), target.p_mat)
if err_code:
raise generate_exception(err_code)
return target
@deprecated
def div_by_scalar(self, alpha, target = None):
"""
Divide the matrix by a scalar.
"""