上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 57 下一页
摘要: package cimport ( "crypto/rand" "encoding/binary" "fmt" "math/big" "testing")func rands(n uint64) []uint64 { d := make([]uint64, n) for i := range d { 阅读全文
posted @ 2022-08-10 16:17 zJanly 阅读(212) 评论(0) 推荐(0) 编辑
摘要: package b/*#cgo LDFLAGS: -L/Users/jalyzhang/CLionProjects/untitled125 -lh#include "stdint.h" void f1(uint64_t *q1, uint64_t *r1, uint64_t a, uint64_t 阅读全文
posted @ 2022-08-08 14:30 zJanly 阅读(221) 评论(0) 推荐(0) 编辑
摘要: git clone https://github.com/libuv/libuv.git https://cgit.freebsd.org/src/commit/ uint64_t _udiv128( uint64_t highDividend, uint64_t lowDividend, uint 阅读全文
posted @ 2022-08-04 11:25 zJanly 阅读(133) 评论(0) 推荐(0) 编辑
摘要: 21.830 53.13s 19.503s 65.54s zen: 11.150s 90.33s 阅读全文
posted @ 2022-08-03 16:36 zJanly 阅读(55) 评论(0) 推荐(0) 编辑
摘要: https://zhuanlan.zhihu.com/p/105775783 https://www.likecs.com/show-204740120.html __shared__ 存储体系 #define CLOCK_RATE 1683000 /* modify for different d 阅读全文
posted @ 2022-07-29 17:24 zJanly 阅读(455) 评论(0) 推荐(0) 编辑
摘要: //https://blog.csdn.net/The_lastest/article/details/109611211 //https://blog.csdn.net/baidu_40840693/article/details/82958911 softmax https://blog.csd 阅读全文
posted @ 2022-07-29 15:39 zJanly 阅读(53) 评论(0) 推荐(0) 编辑
摘要: cmake_minimum_required(VERSION 3.20)project(untitled121)set(CMAKE_VERBOSE_MAKEFILE 1)set(CMAKE_C_COMPILER emcc)set(CMAKE_CXX_COMPILER emcc)set(CMAKE_A 阅读全文
posted @ 2022-07-28 17:29 zJanly 阅读(366) 评论(0) 推荐(0) 编辑
摘要: package meshimport ( "fmt" "io" "net" "strconv" "strings")type Listener interface { io.Closer Accept() (io.ReadWriteCloser, net.Addr, error)}type tcpL 阅读全文
posted @ 2022-07-28 13:50 zJanly 阅读(97) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/abcx3261/article/details/86155257 lenet sudoapt-get install libprotobuf-dev libleveldb-dev libsnappy-dev libopencv-devlibhdf5-se 阅读全文
posted @ 2022-07-28 05:00 zJanly 阅读(51) 评论(0) 推荐(0) 编辑
摘要: package mainimport ( "fmt" "math" "sync" "sync/atomic" "time")type semaphore chan bytefunc wait(s semaphore) bool { _, ok := <- s return ok}func wake( 阅读全文
posted @ 2022-07-27 18:38 zJanly 阅读(112) 评论(0) 推荐(0) 编辑
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 57 下一页