-
Notifications
You must be signed in to change notification settings - Fork 912
/
test_numpy.py
987 lines (628 loc) · 17.8 KB
/
test_numpy.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
import warnings
from numpy_utils import combo_check
import autograd.numpy as np
import autograd.numpy.random as npr
from autograd import grad
from autograd.test_util import check_grads
npr.seed(1)
def test_dot():
def fun(x, y):
return np.dot(x, y)
mat1 = npr.randn(10, 11)
mat2 = npr.randn(10, 11)
vect1 = npr.randn(10)
vect2 = npr.randn(11)
vect3 = npr.randn(11)
check_grads(fun)(mat1, vect2)
check_grads(fun)(mat1, mat2.T)
check_grads(fun)(vect1, mat1)
check_grads(fun)(vect2, vect3)
def test_dot_with_floats():
def fun(x, y):
return np.dot(x, y)
mat1 = npr.randn(10, 11)
vect1 = npr.randn(10)
float1 = npr.randn()
check_grads(fun)(mat1, float1)
check_grads(fun)(float1, mat1)
check_grads(fun)(vect1, float1)
check_grads(fun)(float1, vect1)
# No longer supporting this
# def test_dot_method():
# def fun(x, y): return x.dot(y)
# mat1 = npr.randn(10, 11)
# mat2 = npr.randn(10, 11)
# vect1 = npr.randn(10)
# vect2 = npr.randn(11)
# vect3 = npr.randn(11)
# check_grads(fun)(mat1, vect2)
# check_grads(fun)(mat1, mat2.T)
# check_grads(fun)(vect1, mat1)
# check_grads(fun)(vect2, vect3)
def test_outer():
def fun(x, y):
return np.outer(x, y)
vect2 = npr.randn(11)
vect3 = npr.randn(11)
check_grads(fun)(vect2, vect3)
check_grads(fun)(vect2.T, vect3)
check_grads(fun)(vect2.T, vect3.T)
def test_max():
def fun(x):
return np.max(x)
mat = npr.randn(10, 11)
check_grads(fun)(mat)
def test_max_axis():
def fun(x):
return np.max(x, axis=1)
mat = npr.randn(3, 4, 5)
check_grads(fun)(mat)
def test_max_axis_keepdims():
def fun(x):
return np.max(x, axis=1, keepdims=True)
mat = npr.randn(3, 4, 5)
check_grads(fun)(mat)
def test_min():
def fun(x):
return np.min(x)
mat = npr.randn(10, 11)
check_grads(fun)(mat)
def test_min_axis():
def fun(x):
return np.min(x, axis=1)
mat = npr.randn(3, 4, 5)
check_grads(fun)(mat)
def test_min_axis_keepdims():
def fun(x):
return np.min(x, axis=1, keepdims=True)
mat = npr.randn(3, 4, 5)
check_grads(fun)(mat)
def test_sum_1():
def fun(x):
return np.sum(x)
mat = npr.randn(10, 11)
check_grads(fun)(mat)
def test_sum_2():
def fun(x):
return np.sum(x, axis=0)
mat = npr.randn(10, 11)
check_grads(fun)(mat)
def test_sum_3():
def fun(x):
return np.sum(x, axis=0, keepdims=True)
mat = npr.randn(10, 11)
check_grads(fun)(mat)
def test_sum_with_axis_tuple():
def fun(x):
return np.sum(x, axis=(1, 2))
mat = npr.randn(10, 11, 7)
check_grads(fun)(mat)
def test_flipud():
def fun(x):
return np.flipud(x)
mat = npr.randn(10, 11)
check_grads(fun)(mat)
def test_fliplr():
def fun(x):
return np.fliplr(x)
mat = npr.randn(10, 11)
check_grads(fun)(mat)
def test_rot90():
def fun(x):
return np.rot90(x)
mat = npr.randn(10, 11)
check_grads(fun)(mat)
def test_cumsum_axis0():
def fun(x):
return np.cumsum(x, axis=0)
mat = npr.randn(10, 11)
check_grads(fun)(mat)
def test_cumsum_axis1():
def fun(x):
return np.cumsum(x, axis=1)
mat = npr.randn(10, 11)
check_grads(fun)(mat)
def test_cumsum_1d():
def fun(x):
return np.cumsum(x)
mat = npr.randn(10)
check_grads(fun)(mat)
def test_cumsum_no_axis():
def fun(x):
return np.cumsum(x)
mat = npr.randn(10, 11)
check_grads(fun)(mat)
def test_non_numpy_sum():
def fun(x, y):
return sum([x, y])
mat1 = npr.randn(10, 11)
mat2 = npr.randn(10, 11)
check_grads(fun)(mat1, mat2)
def test_mean_1():
def fun(x):
return np.mean(x)
mat = npr.randn(10, 11)
check_grads(fun)(mat)
def test_mean_2():
def fun(x):
return np.mean(x, axis=0)
mat = npr.randn(10, 11)
check_grads(fun)(mat)
def test_mean_3():
def fun(x):
return np.mean(x, axis=0, keepdims=True)
mat = npr.randn(10, 11)
check_grads(fun)(mat)
def test_index_ints():
A = npr.randn(5, 6, 4)
def fun(x):
return x[3, 0, 1]
check_grads(fun)(A)
def test_index_slice():
A = npr.randn(5, 6, 4)
def fun(x):
return x[::-1, 2:4, :]
check_grads(fun)(A)
def test_index_lists():
A = npr.randn(5, 6, 4)
def fun(x):
return x[[0, 1, 2], :, :]
check_grads(fun)(A)
def test_index_mixed():
A = npr.randn(5, 6, 4)
def fun(x):
return x[3, 2:, [1, 3]]
check_grads(fun)(A)
def test_vector_slice():
A = npr.randn(5)
def fun(x):
return x[2:4]
check_grads(fun)(A)
def test_index_slice_fanout():
A = npr.randn(5, 6, 4)
def fun(x):
y = x[::-1, 2:4, :]
z = x[::-1, 3:5, :]
return y + z
check_grads(fun)(A)
def test_index_multiple_slices():
A = npr.randn(7)
def fun(x):
y = x[2:6]
z = y[1:3]
return z
check_grads(fun)(A)
def test_reshape_method():
A = npr.randn(5, 6, 4)
def fun(x):
return x.reshape((5 * 4, 6))
check_grads(fun)(A)
def test_reshape_call():
A = npr.randn(5, 6, 4)
def fun(x):
return np.reshape(x, (5 * 4, 6))
check_grads(fun)(A)
def test_reshape_method_nolist():
# The reshape can be called in two different ways:
# like A.reshape((5,4)) or A.reshape(5,4).
# This test checks that we support the second way.
A = npr.randn(5, 6, 4)
def fun(x):
return x.reshape(5 * 4, 6)
check_grads(fun)(A)
def test_ravel_method():
A = npr.randn(5, 6, 4)
def fun(x):
return x.ravel()
check_grads(fun)(A)
def test_ravel_call():
A = npr.randn(5, 6, 4)
def fun(x):
return np.ravel(x)
check_grads(fun)(A)
def test_flatten_method():
A = npr.randn(5, 6, 4)
def fun(x):
return x.flatten()
check_grads(fun)(A)
def test_simple_append_list():
A = [1.0, 2.0, 3.0]
b = 4.0
check_grads(np.append, argnum=(0, 1))(A, b)
def test_simple_append_arr():
A = np.array([1.0, 2.0, 3.0])
b = 4.0
check_grads(np.append, argnum=(0, 1))(A, b)
def test_simple_append_list_2D():
A = [[1.0, 2.0, 3.0], [4.0, 5.0, 6.0]]
B = [[7.0, 8.0, 9.0]]
check_grads(np.append, argnum=(0, 1))(A, B, axis=0)
def test_simple_concatenate():
A = npr.randn(5, 6, 4)
B = npr.randn(4, 6, 4)
def fun(x):
return np.concatenate((A, x))
check_grads(fun)(B)
def test_concatenate_axis_0():
A = npr.randn(5, 6, 4)
B = npr.randn(5, 6, 4)
def fun(x):
return np.concatenate((B, x, B))
check_grads(fun)(A)
def test_concatenate_axis_1():
A = npr.randn(5, 6, 4)
B = npr.randn(5, 6, 4)
def fun(x):
return np.concatenate((B, x, B), axis=1)
check_grads(fun)(A)
def test_concatenate_axis_1_unnamed():
"""Tests whether you can specify the axis without saying "axis=1"."""
A = npr.randn(5, 6, 4)
B = npr.randn(5, 6, 4)
def fun(x):
return np.concatenate((B, x, B), 1)
check_grads(fun)(A)
def test_trace():
def fun(x):
return np.trace(x, offset=offset)
mat = npr.randn(10, 11)
offset = npr.randint(-9, 11)
check_grads(fun)(mat)
def test_trace2():
def fun(x):
return np.trace(x, offset=offset)
mat = npr.randn(11, 10)
offset = npr.randint(-9, 11)
check_grads(fun)(mat)
def test_trace_extradims():
def fun(x):
return np.trace(x, offset=offset)
mat = npr.randn(5, 6, 4, 3)
offset = npr.randint(-5, 6)
check_grads(fun)(mat)
# TODO: Allow axis1, axis2 args.
# def test_trace_extradims2():
# def fun(x): return np.trace(x, offset=offset, axis1=3,axis2=2)
# mat = npr.randn(5,6,4,3)
# offset = npr.randint(-5,6)
# check_grads(fun)(mat)
def test_diag():
def fun(x):
return np.diag(x)
mat = npr.randn(10, 10)
check_grads(fun)(mat)
def test_transpose():
def fun(x):
return x.T
mat = npr.randn(8, 8)
check_grads(fun)(mat)
def test_roll():
def fun(x):
return np.roll(x, 2, axis=1)
mat = npr.randn(4, 5)
check_grads(fun)(mat)
def test_roll_no_axis():
def fun(x):
return np.roll(x, 2, axis=1)
mat = npr.randn(4, 5)
check_grads(fun)(mat)
def test_triu():
def fun(x):
return np.triu(x, k=2)
mat = npr.randn(5, 5)
check_grads(fun)(mat)
def test_tril():
def fun(x):
return np.tril(x, k=2)
mat = npr.randn(5, 5)
check_grads(fun)(mat)
def test_clip():
def fun(x):
return np.clip(x, a_min=0.1, a_max=1.1)
mat = npr.randn(5, 5)
check_grads(fun)(mat)
def test_prod_1():
def fun(x):
return np.prod(x)
mat = npr.randn(2, 3) ** 2 / 10.0 + 0.1 # Gradient unstable when zeros are present.
check_grads(fun)(mat)
def test_prod_2():
def fun(x):
return np.prod(x, axis=0)
mat = npr.randn(2, 3) ** 2 + 0.1
check_grads(fun)(mat)
def test_prod_3():
def fun(x):
return np.prod(x, axis=0, keepdims=True)
mat = npr.randn(2, 3) ** 2 + 0.1
check_grads(fun)(mat)
def test_prod_4():
def fun(x):
return np.prod(x)
mat = npr.randn(7) ** 2 + 0.1
check_grads(fun)(mat)
def test_1d_array():
def fun(x):
return np.array([x, x * 1.0, x + 2.5])
check_grads(fun)(3.0)
def test_2d_array():
def fun(x):
return np.array([[x, x * 1.0, x + 2.5], [x**2, x, x / 2.0]])
check_grads(fun)(3.0)
def test_1d_array_fanout():
def fun(x):
A = np.array([x, x * 1.0, x + 2.5])
return A + A
check_grads(fun)(3.0)
def test_2d_array_fanout():
def fun(x):
A = np.array([[x, x * 1.0, x + 2.5], [x**2, x, x / 2.0]])
return A + A
check_grads(fun)(3.0)
def test_array_from_scalar():
def fun(x):
return np.array(x)
check_grads(fun)(3.0)
def test_array_from_arrays():
def fun(x):
return np.array([x, x])
A = npr.randn(3, 2)
check_grads(fun)(A)
def test_array_from_arrays_2():
def fun(x):
return np.array([[2 * x, x + 1], [x, x]])
A = npr.randn(3, 2)
check_grads(fun)(A)
def test_len():
def fun(x):
assert len(x) == 3
return x
A = npr.randn(3, 2)
check_grads(fun)(A)
def test_r_basic():
with warnings.catch_warnings(record=True) as w:
def fun(x):
c = npr.randn(3, 2)
b = np.r_[x]
return b
A = npr.randn(3, 2)
check_grads(fun)(A)
def test_r_double():
with warnings.catch_warnings(record=True) as w:
def fun(x):
c = npr.randn(3, 2)
b = np.r_[x, x]
return b
A = npr.randn(3, 2)
check_grads(fun)(A)
def test_no_relation():
with warnings.catch_warnings(record=True) as w:
c = npr.randn(3, 2)
def fun(x):
return c
A = npr.randn(3, 2)
check_grads(fun)(A)
def test_r_no_relation():
with warnings.catch_warnings(record=True) as w:
c = npr.randn(3, 2)
def fun(x):
b = np.r_[c]
return b
A = npr.randn(3, 2)
check_grads(fun)(A)
def test_r_node_and_const():
with warnings.catch_warnings(record=True) as w:
c = npr.randn(3, 2)
def fun(x):
b = np.r_[x, c]
return b
A = npr.randn(3, 2)
check_grads(fun)(A)
def test_r_mixed():
with warnings.catch_warnings(record=True) as w:
c = npr.randn(3, 2)
def fun(x):
b = np.r_[x, c, x]
return b
A = npr.randn(3, 2)
check_grads(fun)(A)
def test_r_slicing():
with warnings.catch_warnings(record=True) as w:
c = npr.randn(10)
def fun(x):
b = np.r_[x, c, 1:10]
return b
A = npr.randn(10)
check_grads(fun)(A)
def test_c_():
with warnings.catch_warnings(record=True) as w:
c = npr.randn(3, 2)
def fun(x):
b = np.c_[x, c, x]
return b
A = npr.randn(3, 2)
check_grads(fun)(A)
def test_c_mixed():
with warnings.catch_warnings(record=True) as w:
c = npr.randn(3, 2)
def fun(x):
b = np.c_[x, c, x]
return b
A = npr.randn(3, 2)
check_grads(fun)(A)
def test_var_ddof():
B = npr.randn(3)
C = npr.randn(3, 4)
D = npr.randn(1, 3)
combo_check(np.var, (0,))([B, C, D], axis=[None], keepdims=[True, False], ddof=[0, 1])
combo_check(np.var, (0,))([C, D], axis=[None, 1], keepdims=[True, False], ddof=[2])
def test_std_ddof():
B = npr.randn(3)
C = npr.randn(3, 4)
D = npr.randn(1, 3)
combo_check(np.std, (0,))([B, C, D], axis=[None], keepdims=[True, False], ddof=[0, 1])
combo_check(np.std, (0,))([C, D], axis=[None, 1], keepdims=[True, False], ddof=[2])
def test_where():
def fun(x, y):
b = np.where(C, x, y)
return b
C = npr.randn(4, 5) > 0
A = npr.randn(4, 5)
B = npr.randn(4, 5)
check_grads(fun)(A, B)
def test_squeeze_func():
A = npr.randn(5, 1, 4)
def fun(x):
return np.squeeze(x)
check_grads(fun)(A)
def test_squeeze_method():
A = npr.randn(5, 1, 4)
def fun(x):
return x.squeeze()
check_grads(fun)(A)
def test_repeat():
A = npr.randn(5, 3, 4)
def fun(x):
return np.repeat(x, 2, axis=1)
check_grads(fun)(A)
def test_repeat_axis1_rep1():
A = npr.randn(5, 3, 4)
def fun(x):
return np.repeat(x, 1, axis=1)
check_grads(fun)(A)
def test_repeat_axis0():
A = npr.randn(5, 3)
def fun(x):
return np.repeat(x, 2, axis=0)
check_grads(fun)(A)
def test_repeat_1d_axis0():
A = npr.randn(5)
def fun(x):
return np.repeat(x, 2, axis=0)
check_grads(fun)(A)
def test_repeat_axis0_rep1():
A = npr.randn(5, 1)
def fun(x):
return np.repeat(x, 1, axis=0)
check_grads(fun)(A)
def test_expand_dims():
A = npr.randn(5, 1, 4)
def fun(x):
return np.expand_dims(x, 2)
check_grads(fun)(A)
def test_tensordot_kwargs_by_position():
def fun(x):
return np.tensordot(x * np.ones((2, 2)), x * np.ones((2, 2)), 2)
grad(fun)(1.0)
def test_multi_index():
A = npr.randn(3)
fun = lambda x: np.sum(x[[0, 0]])
check_grads(fun)(A)
def test_multi_index2():
A = npr.randn(3)
fun = lambda x: np.sum(x[[0, 1, 0]])
check_grads(fun)(A)
def test_index_dot_slices():
A = npr.randn(4)
def fun(x):
return np.dot(x[:2], x[2:])
check_grads(fun)(A)
# def test_index_exp_slicing():
# def fun(x):
# b = np.index_exp[x, x]
# return b
# A = npr.randn(10, 1)
# check_grads(fun)(A)
# def test_s_slicing():
# def fun(x):
# b = np.s_[x, x]
# return b
# A = npr.randn(10, 1)
# check_grads(fun)(A)
# TODO:
# getitem
def test_cast_to_int():
inds = np.ones(5)[:, None]
def fun(W):
# glue W and inds together
glued_together = np.concatenate((W, inds), axis=1)
# separate W and inds back out
new_W = W[:, :-1]
new_inds = np.int64(W[:, -1])
assert new_inds.dtype == np.int64
return new_W[new_inds].sum()
W = np.random.randn(5, 10)
check_grads(fun)(W)
def test_make_diagonal():
def fun(D):
return np.make_diagonal(D, axis1=-1, axis2=-2)
D = np.random.randn(4)
A = np.make_diagonal(D, axis1=-1, axis2=-2)
assert np.allclose(np.diag(A), D)
check_grads(fun)(D)
D = np.random.randn(3, 4)
A = np.make_diagonal(D, axis1=-1, axis2=-2)
assert all([np.allclose(np.diag(A[i]), D[i]) for i in range(3)])
check_grads(fun)(D)
def test_diagonal():
def fun(D):
return np.diagonal(D, axis1=-1, axis2=-2)
D = np.random.randn(4, 4)
A = np.make_diagonal(D, axis1=-1, axis2=-2)
check_grads(fun)(D)
D = np.random.randn(3, 4, 4)
A = np.make_diagonal(D, axis1=-1, axis2=-2)
check_grads(fun)(D)
def test_nan_to_num():
y = np.array([0.0, np.nan, np.inf, -np.inf])
fun = lambda x: np.sum(np.sin(np.nan_to_num(x + y)))
x = np.random.randn(4)
check_grads(fun)(x)
# TODO(mattjj): np.frexp returns a pair of ndarrays and the second is an int
# type, for which there is currently no vspace registered
# def test_frexp():
# fun = lambda x: np.frexp(x)[0]
# A = 1.2 #np.random.rand(4,3) * 0.8 + 2.1
# check_grads(fun)(A)
def test_max_equal_values():
def fun(x):
return np.max(np.array([x, x]))
check_grads(fun)(1.0)
def test_max_equal_values_2d():
def fun(x):
return np.max(np.array([[x, x], [x, 0.5]]), axis=1)
check_grads(fun)(1.0)
check_grads(fun)(-1.0)
def test_min_3_way_equality():
def fun(x):
return np.min(np.array([[x, x, x], [x, 0.5, 0.5], [0.5, 0.5, 0.5], [x, x, 0.5]]), axis=0)
check_grads(fun)(1.0)
check_grads(fun)(-1.0)
def test_maximum_equal_values():
def fun(x):
return np.maximum(x, x)
check_grads(fun)(1.0)
def test_maximum_equal_values_2d():
def fun(x):
return np.maximum(np.array([x, x, 0.5]), np.array([[x, 0.5, x], [x, x, 0.5]]))
check_grads(fun)(1.0)
check_grads(fun)(-1.0)
check_grads(fun)(2.0)
def test_linspace():
for num in [0, 1, 5]:
def fun(x, y):
return np.linspace(x, y, num)
check_grads(fun)(1.2, 3.4)
check_grads(fun)(1.2, -3.4)
check_grads(fun)(1.2, 1.2)
def test_astype():
x = np.arange(3, dtype="float32")
def f(x):
return np.sum(np.sin(x.astype("float64")))
assert grad(f)(x).dtype == np.dtype("float32")
def test_gradient():
check_grads(np.gradient, 0)(npr.randn(10))
check_grads(np.gradient, 0)(npr.randn(10, 10))
check_grads(np.gradient, 0)(npr.randn(10, 10, 10))
for a in [None, 0, 1, -1, (0, 1), (0, -1)]:
check_grads(np.gradient, 0)(npr.randn(10, 10, 10), axis=a)