摘要:
package cimport ( "crypto/rand" "encoding/binary" "fmt" "math/big" "testing")func rands(n uint64) []uint64 { d := make([]uint64, n) for i := range d { 阅读全文
摘要:
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 阅读全文
摘要:
git clone https://github.com/libuv/libuv.git https://cgit.freebsd.org/src/commit/ uint64_t _udiv128( uint64_t highDividend, uint64_t lowDividend, uint 阅读全文
摘要:
21.830 53.13s 19.503s 65.54s zen: 11.150s 90.33s 阅读全文
摘要:
https://zhuanlan.zhihu.com/p/105775783 https://www.likecs.com/show-204740120.html __shared__ 存储体系 #define CLOCK_RATE 1683000 /* modify for different d 阅读全文
摘要:
//https://blog.csdn.net/The_lastest/article/details/109611211 //https://blog.csdn.net/baidu_40840693/article/details/82958911 softmax https://blog.csd 阅读全文
摘要:
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 阅读全文
摘要:
package meshimport ( "fmt" "io" "net" "strconv" "strings")type Listener interface { io.Closer Accept() (io.ReadWriteCloser, net.Addr, error)}type tcpL 阅读全文
摘要:
https://blog.csdn.net/abcx3261/article/details/86155257 lenet sudoapt-get install libprotobuf-dev libleveldb-dev libsnappy-dev libopencv-devlibhdf5-se 阅读全文
摘要:
package mainimport ( "fmt" "math" "sync" "sync/atomic" "time")type semaphore chan bytefunc wait(s semaphore) bool { _, ok := <- s return ok}func wake( 阅读全文