1. 22 10月, 2017 1 次提交
  2. 21 10月, 2017 7 次提交
  3. 20 10月, 2017 14 次提交
  4. 19 10月, 2017 15 次提交
  5. 18 10月, 2017 3 次提交
    • Y
      Correct implement BlockDesc destructor (#4882) · 8938a9b0
      Yu Yang 提交于
      8938a9b0
    • Q
      fix conflict (#4883) · 521514da
      QI JUN 提交于
      521514da
    • M
      MatMul operator (#4856) · 16489827
      Markus Kliegl 提交于
      * initial matmul operator
      
      Similar to np.matmul, but also has transpose_X and transpose_Y flags,
      and only supports tensors from rank 1 to 3 inclusive.
      
      For GPU, uses cublas?gemmStridedBatched. For CPU, uses
      cblas_?gemm_batch if available via MKL; otherwise a simple serial
      implementation that loops over the batch dimension is employed for now.
      16489827