暗能星系

    • 登录
    • 搜索
    1. 主页
    2. 版块
    3. 数据中心 IDC HPC
    登录以发表
    • 从新到旧
    • 从旧到新
    • 回复最多
    • 最多赞同
    • Most Views
    • A

      kubernetes发行版
      • anneng

      1
      0
      赞同
      1
      帖子
      6
      浏览

      尚无回复

    • A

      曙光环境验证
      • anneng

      11
      0
      赞同
      11
      帖子
      34
      浏览

      A

      编译TBB的时候clang 找不到
      export PATH=$PATH:/opt/rocm-4.5.0/llvm/bin/

    • A

      cuda 编程
      • anneng

      3
      0
      赞同
      3
      帖子
      14
      浏览

      A

      //GPU的内存空间和CPU的内存的空间是分离的 需要将数据来回转移 这样看来 GPU对整个主机而言 就是一个外设 在OS中也确实是这么实现的 可以用lscpi查找GPU设备
      cudaMemcpy(d_a, a, numBytes, cudaMemcpyHostToDevice); // Synchronous function, no overlapping allowed.
      kernelFunctionName<<<Grid,ThreadsPerBlock>>>(arg1, arg2, ..., arg n); // Asynchronous, we can take advantage of overlapping.
      //Host code during device execution
      ...

      // End of the overlapped host code. Waiting for the end of the kernel execution to transfer data between the host and the device. cudaMemcpy(a, d_a, numBytes, cudaMemcpyDeviceToHost); // Synchronous function, no overlapping allowed.
    • A

      Dell服务器基本知识--存储
      • anneng

      2
      0
      赞同
      2
      帖子
      13
      浏览

      A

      https://www.techrepublic.com/blog/data-center/how-sas-near-line-nl-sas-and-sata-disks-compare/

    • A

      SGE Sun Grid Engine性能调优
      • anneng

      1
      0
      赞同
      1
      帖子
      7
      浏览

      尚无回复

    Powered by 暗能星系