Changes#

import matplotlib.pyplot as plt
x = [0, 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]
y = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 37, 25, 8, 6, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 4, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]
xl = ['2021-w23', '2021-w24', '2021-w25', '2021-w26', '2021-w27', '2021-w28', '2021-w29', '2021-w30', '2021-w31', '2021-w32', '2021-w33', '2021-w34', '2021-w35', '2021-w36', '2021-w37', '2021-w38', '2021-w39', '2021-w40', '2021-w41', '2021-w42', '2021-w43', '2021-w44', '2021-w45', '2021-w46', '2021-w47', '2021-w48', '2021-w49', '2021-w50', '2021-w51', '2021-w52', '2022-w01', '2022-w02', '2022-w03', '2022-w04', '2022-w05', '2022-w06', '2022-w07', '2022-w08', '2022-w09', '2022-w10', '2022-w11', '2022-w12', '2022-w13', '2022-w14', '2022-w15', '2022-w16', '2022-w17', '2022-w18', '2022-w19', '2022-w20', '2022-w21', '2022-w22', '2022-w23']
plt.close('all')
plt.style.use('ggplot')
fig, ax = plt.subplots(nrows=1, ncols=1, figsize=(10, 4))
ax.bar(x, y)
tig = ax.get_xticks()
labs = []
for t in tig:
    if t in x:
        labs.append(xl[x.index(t)])
    else:
        labs.append("")
ax.set_xticklabels(labs)
ax.grid(True)
ax.set_title("commits")
plt.show()

(png, hires.png, pdf)

_images/filechanges-1.png

List of recent changes:

#

change number

date

author

comment

94

057fab8

2022-06-06

xavier dupré

Merge branch ‘main’ of https://github.com/sdpython/deeponnxcustom

93

464ecf2

2022-06-06

xavier dupré

lint

92

94d3ca8

2022-06-01

xadupre

fix protobuf issue

91

b089ee3

2022-03-28

xavier dupré

Update requirements-dev.txt

90

3653cf3

2022-03-16

xavier dupré

Update .local.jenkins.lin.yml

89

54f531c

2022-03-06

xavier dupré

Update .local.jenkins.lin.yml

88

577d767

2022-03-06

xavier dupré

Merge branch ‘main’ of https://github.com/sdpython/deeponnxcustom

87

f81c158

2022-03-06

xavier dupré

Update setup.py

86

84c5a7c

2022-03-02

xavier dupré

eol

84

bad805b

2022-01-27

xavier dupré

Update conf.py

83

37c5e27

2022-01-27

xavier dupré

Update plot_profile_ortmodule.py

82

7e4d8f4

2021-12-17

xavier dupré

Update plot_op_einsum.py

81

8b62c5b

2021-12-17

xavier dupré

fix unit test

80

a9c7d9f

2021-11-19

xavier dupré

fix missing import

79

05974e4

2021-11-19

xavier dupré

bypass some test

78

94b4a7a

2021-11-19

xavier dupré

replicate duplicated argument

77

a49ecea

2021-11-19

xavier dupré

add gather elements

76

f62cb56

2021-11-18

xavier dupré

Update test_torchort_onnx_ops.py

75

f9307ea

2021-11-18

xavier dupré

add more unit test

74

3d901e9

2021-11-10

xavier dupré

Update plot_profile_ortmodule.py

73

af049db

2021-11-10

xavier dupré

Update plot_op_einsum.py

71

aa6bae1

2021-11-09

xavier dupré

add torch profiler

70

6ed2c51

2021-11-08

xavier dupré

Update plot_profile_torchort.py

69

edfc9ea

2021-11-08

xavier dupré

device

68

69dc7eb

2021-11-08

xavier dupré

fix device

67

787ed6d

2021-11-08

xavier dupré

Update torchort.py

66

3c52c68

2021-11-08

xavier dupré

fix example

65

4d9b50d

2021-11-07

xavier dupré

Update torchort.py

64

3bc55f2

2021-11-07

xavier dupré

Update torchort.py

63

26a7f4f

2021-11-07

xavier dupré

Update torchort.py

62

8ff9828

2021-11-07

xavier dupré

lint + notebook

61

37802ad

2021-11-06

xavier dupré

Merge branch ‘b2’ of https://github.com/sdpython/deeponnxcustom

60

17fb022

2021-11-06

xavier dupré

fix torchortfactory

59

b843227

2021-11-05

xavier dupré

Update plot_profile_ortmodule.py

58

72f1fcc

2021-11-05

xavier dupré

Update plot_profile_ortmodule.py

57

9ee7d5e

2021-11-05

xavier dupré

update examples

56

68b9da1

2021-11-05

xavier dupré

Create plot_profile_ortmodule.py

55

e844fce

2021-11-04

xavier dupré

Update test_ortvalue.py

54

72eb1bb

2021-11-04

xavier dupré

more ut

53

8d2f2ed

2021-11-04

xavier dupré

Update appveyor.yml

52

4ddd199

2021-11-03

xavier dupré

some improvments

51

86d5a48

2021-11-03

xavier dupré

update unit test

50

a9c5741

2021-11-02

xavier dupré

Update test_code_style.py

49

80ddfec

2021-11-02

xavier dupré

Update test_ortvalue.py

48

3d8d39e

2021-11-02

xavier dupré

fix unittest

47

c2f0d5c

2021-11-02

xavier dupré

unit test

46

f0b84d9

2021-11-02

xavier dupré

add one example about gradient

45

7a1a38f

2021-11-02

xavier dupré

Update requirements-dev.txt

44

f47a5e5

2021-11-02

xavier dupré

documentation, refactoring

43

1715e57

2021-11-01

xavier dupré

increase code coverage

42

90ba3e8

2021-11-01

xavier dupré

Update test_cli_check.py

40

8bdf870

2021-11-01

xavier dupré

documentation, code coverage

38

2c4e9a5

2021-10-31

xavier dupré

documentation, misspelling

37

f610e51

2021-10-31

xavier dupré

Update config.yml

36

eb7164c

2021-10-31

xavier dupré

fix unit test

35

c5cf6cc

2021-10-31

xavier dupré

documentation, onnx_rename_weights

34

900378b

2021-10-31

xavier dupré

Update .local.jenkins.lin.yml

32

5c3498a

2021-10-31

xavier dupré

Update requirements-dev.txt

31

8e2a357

2021-10-30

xavier dupré

lint

30

225ec9c

2021-10-30

xavier dupré

fix torch runtime

29

04362e8

2021-10-30

xavier dupré

lint

28

c1c7dde

2021-10-30

xavier dupré

refactoring

27

02646e4

2021-10-30

xavier dupré

Update .local.jenkins.lin.yml

26

b5ca313

2021-10-30

xavier dupré

Update .local.jenkins.lin.yml

25

6cbc3f4

2021-10-29

xavier dupré

refactoring

24

eafdcca

2021-10-29

xavier dupré

add simple torch runtime for onnx

23

2d5b18c

2021-10-28

xavier dupré

updates

22

30aa350

2021-10-28

xavier dupré

improves code

21

14e4260

2021-10-28

xavier dupré

update CI

20

42376c3

2021-10-28

xavier dupré

fix import issues

19

f49ae6e

2021-10-28

xavier dupré

Update requirements-dev.txt

18

f9edc49

2021-10-28

xavier dupré

Update plot_ortmodule.py

17

0a4ccc8

2021-10-28

xavier dupré

fix import issues

16

2eabea3

2021-10-28

xavier dupré

lint

15

0e29f41

2021-10-28

xavier dupré

refactor the examples

14

04c41f0

2021-10-28

xavier dupré

lint

13

a429260

2021-10-28

xavier dupré

lint

12

3ec7916

2021-10-28

xavier dupré

fix bugs

11

aea3093

2021-10-27

xavier dupré

update unit test

10

4c814e6

2021-10-27

xavier dupré

fix bugs

9

b32efb8

2021-10-27

xavier dupré

lint

8

6a1fa4d

2021-10-27

xavier dupré

updates

7

e677aa7

2021-10-27

xavier dupré

Merge branch ‘main’ of https://github.com/sdpython/deeponnxcustom

6

085fcf0

2021-10-27

xavier dupré

update script

5

60e7083

2021-10-26

xavier dupré

update main branch

4

4486b7c

2021-10-25

xavier dupré

update badge

3

8dc02e5

2021-10-25

xavier dupré

update for the documentation

2

45a87e3

2021-10-25

xavier dupré

Update project_ico.png

1

6109b56

2021-10-25

xavier dupré

First draft