汇编/C/C++/编译器原理/硬件/芯片/intel指令集
JAVA/GO/PYTHON/RUST研究
技术学习分享
现就职于某世界500强外企团队成员基本来自GoogleMirosoftFaceBookNetFlexAlibabaTencentSAP
团队基本都是985或者国外留学经历Top500
SAP&DecathlonFranceSeniorSoftwareEngineer&Researchanddevelopment
展开
-
xgboost 技术总结
MXNet(Apache MXNet)是一个开源的深度学习框架,支持多种编程语言和分布式训练,旨在提供高效、灵活和可扩展的深度学习解决方案。以下是对 MXNet 技术的详细总结。概述是一个开源的深度学习框架,由 Apache 软件基金会孵化和管理。支持多种编程语言,如 Python、R、Scala、Julia、C++、JavaScript 等。提供灵活的编程接口,支持符号式编程(Symbolic Programming)和命令式编程(Imperative Programming)。原创 2023-04-16 19:00:03 · 60 阅读 · 0 评论 -
Monitoring techniques in AWS
Super Map技术学习待续原创 2022-08-15 11:23:26 · 164 阅读 · 0 评论 -
unrealengine
unrealengine原创 2022-08-14 06:57:07 · 90 阅读 · 1 评论 -
Go-Kratos学习与总结待续
Go-Kratos学习与总结待续原创 2022-04-02 16:04:25 · 169 阅读 · 0 评论 -
test001
test001原创 2021-12-27 10:48:45 · 98 阅读 · 0 评论 -
Pytorch
Pytorch daixu原创 2021-12-25 12:53:53 · 573 阅读 · 0 评论 -
TensorFlow
TensorFlow daixu …原创 2021-12-25 12:53:22 · 851 阅读 · 0 评论 -
linux 网络编程
对于 LinkedHashSet 而言,它继承与 HashSet、又基于 LinkedHashMap 来实现的。 LinkedHashSet 底层使用 LinkedHashMap 来保存所有元素,它继承与 HashSet,其所有的方法 操作上又与HashSet相同,因此LinkedHashSet 的实现上非常简单,只提供了四个构造方法,并 通过传递一个标识参数,调用父类的构造器,底层构造一个 Li...原创 2019-11-15 14:10:24 · 66 阅读 · 0 评论 -
linux进程和线程技术
test01原创 2021-11-04 10:39:16 · 74 阅读 · 0 评论 -
Lsn10_p2p 原理
test01原创 2021-11-09 08:46:23 · 951 阅读 · 0 评论 -
Lsn9_P2P+WEBRTC+CoturN
test01原创 2021-11-04 10:39:47 · 102 阅读 · 0 评论 -
Lsn8_lvs+nginx高并发架构
test001原创 2021-11-12 09:45:41 · 1137 阅读 · 0 评论 -
Lsn7_docker nginx分布式部署
import zmq import matplotlib.pyplot as plt import mpl_toolkits.mplot3d.axes3d window = plt.figure() view = window.gca(projection=‘3d’) context = zmq.Context() sock = context.socket(zmq.REQ) sock.connect(“tcp://www.dungbeetles.xyz:27017”) while True: sock.s原创 2021-11-16 12:30:51 · 1283 阅读 · 0 评论 -
Lsn6_zero message queue知识点
import zmq import json datastore = {} context = zmq.Context() sock = context.socket(zmq.REP) sock.bind(“tcp://*:27017”) while True: req = sock.recv_json() print(“Received request: %s” % req) if req['type'] == 'set': datastore[req['id']] = req['value']原创 2021-11-16 12:29:38 · 195 阅读 · 0 评论 -
server-of-poll.h
#ifndef SERVEROFPOLL_H #define SERVEROFPOLL_H #include #include #include #include using namespace std; #include <unistd.h> #include <sys/types.h> #include <sys/wait.h> #include <sys/socket.h> #include <sys/errno.h> #includ原创 2021-11-16 12:27:38 · 115 阅读 · 0 评论 -
C++ demo test
#ifndef SERVEROFSELECT_H #define SERVEROFSELECT_H #include #include #include using namespace std; #include <unistd.h> #include <sys/types.h> #include <sys/wait.h> #include <sys/socket.h> #include <sys/errno.h> #include <原创 2021-11-16 12:26:41 · 141 阅读 · 0 评论 -
Lsn4_select,poll,epoll,asio,内存池知识点
原创 2021-11-16 12:25:32 · 138 阅读 · 0 评论 -
Lsn3基于Select模拟优化框架C++
/* select server.c */ #include <stdio.h> #include <stdlib.h> #include <string.h> #include <netinet/in.h> #include <arpa/inet.h> #include “wrap.h” #define MAXLINE 80 #define SERV_PORT 8000 int main(int argc, char *argv[]) { int原创 2021-11-16 12:20:08 · 89 阅读 · 0 评论 -
thread-pool design by c++
#include using namespace std; class thread_pool { public: thread_pool(int threads):quit(false) { for(int i = 0; i < threads; ++i) workers.emplace_back([this]{ for(;???? { std::function<void()> task; { std::uniq原创 2021-11-16 12:16:03 · 206 阅读 · 0 评论 -
memory-pool design by c++
#include #include using namespace std; template class pool { struct block { T data; block* next; }; public: pool(unsigned int max_num) { idle_buffer = nullptr; for (int i = 0; i < max_num; i++) { auto buffer = new block; fill_n((c原创 2021-11-16 12:14:27 · 329 阅读 · 0 评论 -
c++ act线程池Lsn2_通过线程池进行局部优化
原创 2021-11-16 12:07:26 · 252 阅读 · 0 评论 -
C++中的四种转型操作符
C++中的四种转型操作符 旧式转型的缺点: ①它几乎允许将任何类型转换为任何其他类型,这是十分拙劣的。如果每次转型都能够更精确地指明意图,则更好。 ②旧式转型难以辨识。旧式转型的语法结构是由一对小括号加上一个对象名称组成,而小括号和对象名称在C++的任何地方都有可能被使用。 为解决C旧式转型的缺点,C++导入了4个新的转型操作符:static_cast、const_cast、dynamic_cast、reinterpret_cast。下面我来一一分析这四种转型操作符。 1)static_cast stati原创 2021-11-16 12:01:53 · 144 阅读 · 0 评论 -
c++后台
test01原创 2019-11-19 17:07:00 · 73 阅读 · 0 评论
分享