Merge pull request #168 from tum-ei-eda/feature-ssh-target #753
cicd.yml
on: push
Matrix: build
Matrix: coverage
Matrix: docs
Matrix: release
Annotations
10 errors and 7 warnings
mlonmcu/target/host_x86_ssh.py#L21
'stat' imported but unused (F401)
|
/home/runner/work/mlonmcu/mlonmcu/mlonmcu/flow/tflm/backend/tflmi.py#L161
if len(custom_ops) > 0:
raise NotImplementedError
if len(registrations) > 0:
raise NotImplementedError
if ops_resolver == "mutable":
- assert len(ops) > 0, ("No ops specified for ops_resolver=mutable!"
- "Set model ops in definition.yml or use ops_resolver=all")
+ assert len(ops) > 0, (
+ "No ops specified for ops_resolver=mutable!" "Set model ops in definition.yml or use ops_resolver=all"
+ )
elif ops_resolver == "all":
- raise RuntimeError("AllOpsResolver was removed from TFLM!"
- "Use ops_resolver=mutable or ops_resolver=fallback")
+ raise RuntimeError(
+ "AllOpsResolver was removed from TFLM!" "Use ops_resolver=mutable or ops_resolver=fallback"
+ )
elif ops_resolver == "fallback":
ops_resolver = "mutable"
# Defines common operators which are used in many models
default_ops = [
"ADD",
|
mlonmcu/target/host_x86_ssh.py#L22
'pathlib.Path' imported but unused (F401)
|
/home/runner/work/mlonmcu/mlonmcu/mlonmcu/target/ssh_target.py#L18
#
"""MLonMCU SSH Target definitions"""
import os
import re
+
# import tempfile
# import time
import socket
from pathlib import Path
|
mlonmcu/target/host_x86_ssh.py#L24
'mlonmcu.config.str2bool' imported but unused (F401)
|
mlonmcu/target/host_x86_ssh.py#L25
'mlonmcu.setup.utils.execute' imported but unused (F401)
|
/home/runner/work/mlonmcu/mlonmcu/mlonmcu/target/ssh_target.py#L90
ssh = paramiko.SSHClient()
try:
ssh.connect(self.hostname, port=self.port, username=self.username, password=self.password)
# TODO: key_filename=key_file)
return True
- except (BadHostKeyException, AuthenticationException,
- SSHException, socket.error) as e:
+ except (BadHostKeyException, AuthenticationException, SSHException, socket.error) as e:
print(e) # TODO: remove
return False
raise NotImplementedError
def create_remote_directory(self, path):
|
/home/runner/work/mlonmcu/mlonmcu/mlonmcu/target/ssh_target.py#L164
if self.print_outputs:
print("output", output) # TODO: cleanup
ssh.close()
return output
+
# TODO: logger
|
/home/runner/work/mlonmcu/mlonmcu/scripts/utils/tvm/infer_type.py#L1
import sys
import tvm
+
# from tvm.relay import transform
from tvm import relay
+
# from tvm import parser
assert len(sys.argv) == 2, "Invalid number of arguments"
with open(sys.argv[1]) as f:
|
coverage (3.10)
Process completed with exit code 2.
|
build (3.9)
The following actions uses Node.js version which is deprecated and will be forced to run on node20: actions/checkout@v3, actions/setup-python@v4, actions/cache@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
build (3.11)
The following actions uses Node.js version which is deprecated and will be forced to run on node20: actions/checkout@v3, actions/setup-python@v4, actions/cache@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
build (3.10)
The following actions uses Node.js version which is deprecated and will be forced to run on node20: actions/checkout@v3, actions/setup-python@v4, actions/cache@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
build (3.8)
The following actions uses Node.js version which is deprecated and will be forced to run on node20: actions/checkout@v3, actions/setup-python@v4, actions/cache@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
build (3.7)
The following actions uses Node.js version which is deprecated and will be forced to run on node20: actions/checkout@v3, actions/setup-python@v4, actions/cache@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
coverage (3.10)
The following actions uses Node.js version which is deprecated and will be forced to run on node20: actions/checkout@v3, actions/setup-python@v4, actions/cache@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
docs (3.10)
The following actions uses Node.js version which is deprecated and will be forced to run on node20: actions/checkout@v3, actions/setup-python@v4, actions/cache@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|