Re: [apache/incubator-tvm] [VOTE] Apache TVM Graduation (#6332)

2020-08-24 Thread MORITA Kazutaka
+1 (non-binding) -- You are receiving this because you commented. Reply to this email directly or view it on GitHub: https://github.com/apache/incubator-tvm/issues/6332#issuecomment-679431456

[TVM Discuss] [Development/RFC] [RFC][BYOC] Runtime module to offload subgraph to edge server

2020-06-30 Thread Morita Kazutaka via TVM Discuss
@zhiics Thanks for your comment. Yes, I just use BYOC to specify which part should be offloaded. The subgraph can be a blackbox for users. There are two ways I tried to prepare the package. 1. Cross-compile locally and upload the built lib to the remote server. [[code](https://github.com/ka

[TVM Discuss] [Development/RFC] [RFC][BYOC] Runtime module to offload subgraph to edge server

2020-06-30 Thread Morita Kazutaka via TVM Discuss
The goal of this RFC is to offload subgraph inference from user devices to high performance edge servers. The initial code is available [here](https://github.com/kazum/tvm/tree/remote_runtime), which implements inference offloading based on BYOC. # Motivation The benefit of offloading infere

Re: [apache/incubator-tvm] [VOTE] Release Apache TVM (incubating) v0.6.1.rc1 (#5947)

2020-06-29 Thread MORITA Kazutaka
+1 -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/apache/incubator-tvm/issues/5947#issuecomment-651304553

[TVM Discuss] [Development/RFC] [RFC] CoreML Codegen

2020-05-20 Thread Morita Kazutaka via TVM Discuss
[quote="kazum, post:1, topic:6415"] I’ve implemented [a prototype of A0](https://github.com/kazum/tvm/tree/coreml_codegen) [/quote] The PR was sent and it's ready to review. https://github.com/apache/incubator-tvm/pull/5634 --- [Visit Topic](https://discuss.tvm.ai/t/rfc-coreml-codegen/6415

[TVM Discuss] [Development/RFC] Pure WebAssembly support

2020-04-27 Thread Morita Kazutaka via TVM Discuss
I'm interested in WebAssembly as a next generation of portable and secure binary images, which can run anywhere and be deployed on, e.g., [Krustlet](https://github.com/deislabs/krustlet). Pure WASM support without a JavaScript layer looks like the area where other DL frameworks haven't worked

[TVM Discuss] [Development/RFC] [RFC] CoreML Codegen

2020-04-17 Thread Morita Kazutaka via TVM Discuss
Adding CoreML codegen with the BYOC feature enables us to offload subgraphs to Apple’s Neural Engine on iOS devices. There are some approaches how to build a CoreML model in TVM. - A0: Build with coremltools I think this is the most intuitive way to construct CoreML models. coremltools pr

[TVM Discuss] [Development/RFC] [RFC] CoreML Runtime

2020-04-13 Thread Morita Kazutaka via TVM Discuss
@FrozenGene Sorry, my description is ambiguous. You can compile a CoreML model with the following command: $(xcode-select -p)/usr/bin/coremlc compile [model.mlmodel] [outputFolder] or xcrun coremlcompiler compile [model.mlmodel] [outputFolder] I tried Xcode 11.4 and 10.3, and I cou

[TVM Discuss] [Development/RFC] [RFC] CoreML Runtime

2020-04-09 Thread Morita Kazutaka via TVM Discuss
In this RFC, we would like to propose adding a runtime to load and execute CoreML models from TVM. ## Motivation - Currently, using CoreML is a defacto standard approach to run inference on iOS. This runtime is useful to obtain a baseline benchmark and compare it with TVM. - Using CoreML

[TVM Discuss] [Development] Gather_nd semantics

2020-04-09 Thread Morita Kazutaka via TVM Discuss
[quote="adobay, post:5, topic:6243"] ``` in_indices = tf.placeholder(tf.float32, np_indices.shape, name="in_indices") out = tf.gather_nd(in_data, indices) ``` [/quote] These lines should be ``` in_indices = tf.placeholder(tf.int32, np_indices.shape, name="in_indices") out = tf.gather_nd(in_data,

[TVM Discuss] [Development] Gather_nd semantics

2020-04-08 Thread Morita Kazutaka via TVM Discuss
https://github.com/apache/incubator-tvm/pull/5279 --- [Visit Topic](https://discuss.tvm.ai/t/gather-nd-semantics/6243/3) to respond. You are receiving this because you enabled mailing list mode. To unsubscribe from these emails, [click here](https://discuss.tvm.ai/email/unsubscribe/704e7a

[TVM Discuss] [Development] Gather_nd semantics

2020-04-08 Thread Morita Kazutaka via TVM Discuss
I think we don't need to change the current semantics. We can easily implement Tensorflow gather_nd with the mxnet gather_nd (and vice versa). Here is a pseudo code: ``` tf_gather_nd(data, indices) = relay.gather_nd(data, transpose(indices, [N-1, 0, 1, ..., N-2])) ``` where N is the dimension

Re: [apache/incubator-tvm] [VOTE] VTA HW/SW refactor (#5102)

2020-03-19 Thread MORITA Kazutaka
+1 -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/apache/incubator-tvm/issues/5102#issuecomment-601403528

Re: [dmlc/tvm] [Vote] Deprecate Python2 Support (#2994)

2019-04-10 Thread MORITA Kazutaka
+1 -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/dmlc/tvm/issues/2994#issuecomment-481581642

Re: [dmlc/tvm] [VOTE] Apache Transition Plan (#2973)

2019-04-05 Thread MORITA Kazutaka
+1 -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/dmlc/tvm/issues/2973#issuecomment-480433070