File tree Expand file tree Collapse file tree 5 files changed +8
-20
lines changed Expand file tree Collapse file tree 5 files changed +8
-20
lines changed Original file line number Diff line number Diff line change
1
+ ## V3.2.9
2
+ - fixed minor bug with JSON console output
3
+ - fixed minor bug with console in cmind.x function
4
+
1
5
## V3.2.8
2
6
- fixed Docker test for mlperf-inference with cm4mlops
3
7
- minor improvements
Original file line number Diff line number Diff line change 2
2
#
3
3
# Written by Grigori Fursin
4
4
5
- __version__ = "3.2.8 "
5
+ __version__ = "3.2.9 "
6
6
7
7
from cmind .core import access
8
8
from cmind .core import x
Original file line number Diff line number Diff line change @@ -193,21 +193,6 @@ def run_experiment(argv = None):
193
193
194
194
return run (['run' , 'experiment' ] + argv )
195
195
196
- ############################################################
197
- def run_ff (argv = None ):
198
- """
199
- """
200
-
201
- # Access CMX
202
- if argv is None :
203
- argv = sys .argv [1 :]
204
-
205
- x = 'lex'
206
- if len (argv ) > 0 and argv [0 ].startswith ('_misc' ):
207
- x = argv [0 ]
208
-
209
- return runx (['run' , 'f' + x + '.flow' ] + argv )
210
-
211
196
############################################################
212
197
def parse (cmd ):
213
198
"""
Original file line number Diff line number Diff line change @@ -1656,7 +1656,7 @@ def access(i):
1656
1656
return cm .access (i )
1657
1657
1658
1658
############################################################
1659
- def x (i ):
1659
+ def x (i , out = None ):
1660
1660
"""
1661
1661
Automatically initialize CM and run automations
1662
1662
without the need to initialize and customize CM class.
@@ -1668,9 +1668,9 @@ def x(i):
1668
1668
global cm
1669
1669
1670
1670
if cm is None :
1671
- cm = CM ()
1671
+ cm = CM ()
1672
1672
1673
- return cm .x (i )
1673
+ return cm .x (i , out = out )
1674
1674
1675
1675
############################################################
1676
1676
def error (i ):
Original file line number Diff line number Diff line change @@ -101,7 +101,6 @@ def run(self):
101
101
"cm = cmind.cli:run" ,
102
102
"cmx = cmind.cli:runx" ,
103
103
"cmr = cmind.cli:run_script" ,
104
- "flexflow = cmind.cli:run_ff" ,
105
104
"cmrd = cmind.cli:docker_script" ,
106
105
"cmg = cmind.cli:gui_script" ,
107
106
"cme = cmind.cli:run_experiment"
You can’t perform that action at this time.
0 commit comments