1. 27 5月, 2022 1 次提交
  2. 15 5月, 2022 1 次提交
  3. 06 5月, 2022 1 次提交
  4. 28 4月, 2022 1 次提交
  5. 15 4月, 2022 2 次提交
  6. 14 4月, 2022 1 次提交
  7. 09 4月, 2022 2 次提交
  8. 01 4月, 2022 1 次提交
  9. 25 3月, 2022 2 次提交
  10. 19 3月, 2022 2 次提交
  11. 10 3月, 2022 1 次提交
  12. 08 3月, 2022 1 次提交
  13. 28 2月, 2022 1 次提交
  14. 24 2月, 2022 1 次提交
  15. 20 2月, 2022 1 次提交
  16. 17 2月, 2022 3 次提交
  17. 14 2月, 2022 1 次提交
  18. 12 2月, 2022 3 次提交
  19. 02 2月, 2022 2 次提交
  20. 21 1月, 2022 2 次提交
  21. 19 1月, 2022 2 次提交
  22. 18 1月, 2022 2 次提交
  23. 13 1月, 2022 1 次提交
  24. 12 1月, 2022 2 次提交
    • J
      Update trt_executor.cc (#1252) · 1aea916c
      Jeremy-J-J 提交于
      Add cast data type casting to fix the bug `cannot convert from const char [] to char*`
      1aea916c
    • J
      Update trt_define.h (#1251) · c7def5b6
      Jeremy-J-J 提交于
      * Update trt_define.h
      
      (1) add `#include <iostream>` to fix the bug `"string" is not a member of "std"`;
      (2) add `#include <string>` to fix the bug `"to_string" is not  member of "std"`;
      
      * Update trt_executor.cc
      
      Add cast data type casting to fix the bug `cannot convert from const char [] to char*`
      c7def5b6
  25. 10 1月, 2022 1 次提交
  26. 29 12月, 2021 1 次提交
  27. 27 12月, 2021 1 次提交
    • J
      fix some bugs for DFQ quantize (#1240) · cdb4ccf7
      Jeremy-J-J 提交于
      fix some bugs for DFQ quantize:
      (1)fix crash access node_proto.input_node_list,use `std::vector<node_graph> node_proto(graphn->node_num)` to replace `sys_malloc` when declare `node_proto`,
      (2)fix declare `float ops_range[dims1]` crash,dims1 should be constant,use `float* ops_range = new float[dims1]` to repace.
      cdb4ccf7