摘要:
报错现场: Instruction does not dominate all uses! %59 = mul i32 %58, %val %56 = zext i32 %59 to i64LLVM ERROR: Broken function found, compilation aborted! 阅读全文
摘要:
// // FILE: // mp.cpp // // DESCRIPTION: // This pass print every Operand of an op // // USAGE: // 1. Legacy pass manager: // $ opt -load <BUILD_DIR>/ 阅读全文
摘要:
这个文章主要是对官网例程的一个补充。2023.03.28最新,别看更老的文章了,官网日新月异,老的文章会误导你 官网教程: https://huggingface.co/course/zh-CN/chapter1/3?fw=pt 官网安装: https://huggingface.co/course 阅读全文
摘要:
增加指定target,如果你的系统里安装了opencl(比如pocl),有ocl机制,那么Hailide会自动调用OpenCL Halide::Target target = Halide::get_host_target(); target.set_feature(Halide::Target:: 阅读全文
摘要:
这是一个包含环境搭建的完整测试教程,目标读者是从未接触过这些的新手。没有模型训练过程,只是使用的别人训练好的模型。 1. 代码准备:https://github.com/fchollet/deep-learning-models 国内镜像: https://gitee.com/xunaijie/de 阅读全文
摘要:
一个最简单的demo,读取加速度传感器和磁场传感器,直接打印。适合业余玩玩。 用的技术点都是最简单粗暴的,不要用来开发产品。 在安卓2.3.3和5.1的真机上都测试通过。 安卓源码:使用的android studio开发,SDK是API10,姜饼。 为了在一个10年前的手机上玩,三星5830,竟然还 阅读全文
摘要:
一个最简单的demo,手机和电脑连上同一个路由器,向电脑的某个socket端口发送消息。适合业余玩玩。 用的技术点都是最简单粗暴的,不要用来开发产品。 在安卓2.3.3和5.1的真机上都测试通过。 使用方法: sscom5.13.1.exe在电脑上开server不行,估计是被win10防火墙给挡了, 阅读全文
摘要:
#include <stdint.h> #include <stdio.h> #include <stdlib.h> int main(int argc, char *argv[]) { printf("%s running\n", argv[0]); if(argc != 3) { printf( 阅读全文
摘要:
#include <fstream> #include <iostream> #include <opencv2/opencv.hpp> using namespace cv; using namespace std; int main(int argc, char **argv) { const 阅读全文
摘要:
#include <fstream> #include <iostream> #include <opencv2/imgcodecs.hpp> #include <opencv2/opencv.hpp> using namespace cv; using namespace std; int mai 阅读全文