上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 58 下一页
摘要: 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 阅读(118) 评论(0) 推荐(0)
摘要: hip https://github.com/ROCm-Developer-Tools/HIP/blob/develop/INSTALL.md one-api 阅读全文
posted @ 2022-07-26 11:00 zJanly 阅读(127) 评论(0) 推荐(0)
摘要: https://blog.csdn.net/flynetcn/article/details/119487894 阅读全文
posted @ 2022-07-21 14:00 zJanly 阅读(26) 评论(0) 推荐(0)
摘要: /* Copyright (c) 2017, Norbert Juffa All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitt 阅读全文
posted @ 2022-07-13 13:48 zJanly 阅读(62) 评论(0) 推荐(0)
摘要: https://blog.csdn.net/chaoyoujiu4610/article/details/100967324 阅读全文
posted @ 2022-07-08 10:38 zJanly 阅读(9) 评论(0) 推荐(0)
摘要: CU2CL 最后更新:12.03.2017 正如dashesy在评论中指出的那样,CU2CL似乎是一个有趣的项目 . 它似乎能够将CUDA代码转换为OpenCL代码 . 因此,如果您的GPU能够运行OpenCL代码,那么CU2CL项目可能是您感兴趣的 . 链接: CU2CL homepage CU2 阅读全文
posted @ 2022-07-06 15:53 zJanly 阅读(170) 评论(0) 推荐(0)
摘要: #if defined(__CUDACC__)template <typename T>__device__ inline void *memcpy(T *d, const T *s, size_t n) { for (size_t i = 0; i < n / sizeof (T); i++) { 阅读全文
posted @ 2022-06-28 16:02 zJanly 阅读(50) 评论(0) 推荐(0)
摘要: https://zhuanlan.zhihu.com/p/655850951 https://developer.nvidia.com/cuda-toolkit-archive https://blog.csdn.net/qq_41554005/article/details/119765334 h 阅读全文
posted @ 2022-06-27 16:47 zJanly 阅读(146) 评论(0) 推荐(0)
摘要: 天后王菲有实力,多次登上春晚的舞台。 1998年,王菲首次登陆春晚,与那英合唱《相约1998》,轻盈灵动,风姿曼妙。 2010年的春晚,王菲独唱《传奇》,艳惊四座,芳华绝代。 2012年,王菲再度登上春晚,和陈奕迅搭档演唱《因为爱情》,高音飙到极致,震撼人心。 2018年,王菲又登春晚,与那英时隔2 阅读全文
posted @ 2022-06-21 16:28 zJanly 阅读(126) 评论(0) 推荐(0)
摘要: package untitled14import ( "fmt" "strconv")type operator struct { symbol string swap bool throughput, latency uint gap uint}type node struct { id stri 阅读全文
posted @ 2022-06-16 16:48 zJanly 阅读(224) 评论(0) 推荐(0)
上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 58 下一页