1. 10 4月, 2020 4 次提交
  2. 09 4月, 2020 16 次提交
  3. 08 4月, 2020 4 次提交
  4. 07 4月, 2020 6 次提交
  5. 06 4月, 2020 3 次提交
    • S
      fix conflict, test=develop (#23298) · c706ff20
      ShenLiang 提交于
      c706ff20
    • C
      Implement StaticModelRunner to support dygraph fine-tune static graph pre-training model (#23171) · 75bd3507
      Chen Weihang 提交于
      * static model runner basic implement, test=develop
      
      * add run program op to execute loaded program, test=develop
      
      * refactor static model runner & run program op, test=develop
      
      * reset engine.cc to resolve conflict
      
      * adapt the change of dygraph double grad, test=develop
      
      * refactor impl to solve control flow error, test=develop
      
      * clear debug code, test=develop
      
      * fix ci str compatible error & checkout dygraph grad maker & add example, test=develop
      
      * hide api & add op test, test=develop
      
      * fix run program op test places error, test=develop
      
      * fix program by review comment, test=develop
      
      * delete change var desc name, test=develop
      
      * fix other program by review comment, test=develop
      
      * remove _static_graph_guard, test=develop
      
      * add selectedrows test, test=develop
      
      * remove desc parser, test=develop
      
      * fix detail program, test=develop
      
      * change socpe create & add test, test=develop
      75bd3507
    • C
      [OP] Add randperm op (#23292) · 9297f49e
      cc 提交于
      9297f49e
  6. 05 4月, 2020 4 次提交
  7. 04 4月, 2020 3 次提交
    • myq406450149's avatar
      add unbind op (#23359) · eb035f24
      myq406450149 提交于
      * add unbind op
      unbind(tensor, dim=0):
      说明:移除指定维后,返回一组数组,包含了沿着指定维切片后的各个切片。
      
      tensor(Tensor) -- 输入Tensor
      dim(int) -- 删除的维度
      
      示例:
       Input = [[1,2],
                 [3,4],
                 [5,6]]
        axis = 0
        Output[0] = [1,2]
        Output[1] = [3,4]
        Output[2] = [5,6]
      eb035f24
    • Z
      fd9b7bdb
    • C
      Delete Ref & VectorRef and add GetDataSafely (#22997) · 16315d3d
      Chen Weihang 提交于
      * delete invalid check inferface Ref & VectorRef, test=develop
      
      * fix vector ref delete error, test=develop
      
      * try the new check inferface, test=develop
      
      * change all related code with new check macro, test=develop
      
      * remove static assert, test=develop
      
      * polish detail, test=develop
      
      * skip coverage problem, test=develop
      
      * add new check macro, test=develop
      16315d3d