All Projects → kendryte → Kendryte Standalone Sdk

kendryte / Kendryte Standalone Sdk

Licence: apache-2.0
Standalone SDK for kendryte K210

Programming Languages

c
50402 projects - #5 most used programming language

Labels

Projects that are alternatives of or similar to Kendryte Standalone Sdk

Atlas
An Open Source, Self-Hosted Platform For Applied Deep Learning Development
Stars: ✭ 259 (-7.5%)
Mutual labels:  ai
Opennars
OpenNARS for Research 3.0+
Stars: ✭ 264 (-5.71%)
Mutual labels:  ai
Strips
AI Automated Planning with STRIPS and PDDL in Node.js
Stars: ✭ 272 (-2.86%)
Mutual labels:  ai
Polyaxon
Machine Learning Platform for Kubernetes (MLOps tools for experimentation and automation)
Stars: ✭ 2,966 (+959.29%)
Mutual labels:  ai
Lda
LDA topic modeling for node.js
Stars: ✭ 262 (-6.43%)
Mutual labels:  ai
Basic4ai
机器学习、深度学习、自然语言处理等人工智能基础知识总结。
Stars: ✭ 267 (-4.64%)
Mutual labels:  ai
Machine Learning And Ai In Trading
Applying Machine Learning and AI Algorithms applied to Trading for better performance and low Std.
Stars: ✭ 258 (-7.86%)
Mutual labels:  ai
Photosketch
Code for Photo-Sketching: Inferring Contour Drawings from Images 🐶
Stars: ✭ 278 (-0.71%)
Mutual labels:  ai
Hub
Dataset format for AI. Build, manage, & visualize datasets for deep learning. Stream data real-time to PyTorch/TensorFlow & version-control it. https://activeloop.ai
Stars: ✭ 4,003 (+1329.64%)
Mutual labels:  ai
Detecting Fake Text
Giant Language Model Test Room
Stars: ✭ 271 (-3.21%)
Mutual labels:  ai
Aitrack
6DoF Head tracking software
Stars: ✭ 262 (-6.43%)
Mutual labels:  ai
Brainsimulator
Brain Simulator is a platform for visual prototyping of artificial intelligence architectures.
Stars: ✭ 262 (-6.43%)
Mutual labels:  ai
Go Cyber
Your 🔵 Superintelligence
Stars: ✭ 270 (-3.57%)
Mutual labels:  ai
Artline
A Deep Learning based project for creating line art portraits.
Stars: ✭ 3,061 (+993.21%)
Mutual labels:  ai
Olivia
💁‍♀️Your new best friend powered by an artificial neural network
Stars: ✭ 3,114 (+1012.14%)
Mutual labels:  ai
Zao
AI技术换脸源码
Stars: ✭ 257 (-8.21%)
Mutual labels:  ai
Awesome Mlops
😎 A curated list of awesome MLOps tools
Stars: ✭ 258 (-7.86%)
Mutual labels:  ai
Program Y
Python 3.x based AIML 2.0 Chatbot interpreter, framework, related programs and knowledge files
Stars: ✭ 281 (+0.36%)
Mutual labels:  ai
Sharpneat
SharpNEAT - Evolution of Neural Networks. A C# .NET Framework.
Stars: ✭ 273 (-2.5%)
Mutual labels:  ai
Machinelearningroguelike
A small Roguelike game that uses Machine Learning to power its entities. Originally used in talks by Ciro & Alessia.
Stars: ✭ 270 (-3.57%)
Mutual labels:  ai

Kendryte K210 standalone SDK

Build Status License

This SDK is for Kendryte K210 without OS support. If you have any questions, please be free to contact us.

Usage

If you want to start a new project, for instance, hello_world, you only need to:

  • Linux and OSX

mkdir your project in src/, cd src && mkdir hello_world, then put your codes in it, enter SDK root directory and build it.

mkdir build && cd build
cmake .. -DPROJ=<ProjectName> -DTOOLCHAIN=/opt/riscv-toolchain/bin && make
  • Windows

Download and install latest CMake.

Download cmake-3.14.1-win64-x64.msi

Download and install latest toolchain.

Download kendryte-toolchain-win-i386-8.2.0-20190409.tar.xz

Open a Windows Powershell, cd to Project directory.

mkdir your project in src/, cd src && mkdir hello_world, then put your codes in it, and build it.

$env:Path="E:\kendryte-toolchain\bin;C:\Program Files\CMak
e\bin" +  $env:Path

mkdir build && cd build
cmake -G "MinGW Makefiles" ../../../..
make

You will get 2 key files, hello_world and hello_world.bin.

  1. If you are using JLink to run or debug your program, use hello_world
  2. If you want to flash it in UOG, using hello_world.bin, then using flash-tool(s) burn .bin to your flash.

This is very important, don't make a mistake in files.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].