Bryan Lozano
Bryan Lozano
Can we use some standard C++ way of measuring time? `#include ` ``` [ 97%] Linking CXX executable xcl_vcu_test.exe /scratch/bryanloz/mambaforge/conda-bld/xilinx-runtime_1655485890460/_build_env/bin/../lib/gcc/x86_64-conda-linux-gnu/9.3.0/../../../../x86_64-conda-linux-gnu/bin/ld: CMakeFiles/xcl_vcu_test.exe.dir/src/plugin_dec.cpp.o: undefined reference to symbol 'clock_gettime@@GLIBC_2.2.5' /scratch/bryanloz/mambaforge/conda-bld/xilinx-runtime_1655485890460/_build_env/bin/../lib/gcc/x86_64-conda-linux-gnu/9.3.0/../../../../x86_64-conda-linux-gnu/bin/ld: /scratch/bryanloz/mambaforge/conda-bld/xilinx-runtime_1655485890460/_build_env/bin/../x86_64-conda-linux-gnu/sysroot/lib64/librt.so.1: error adding...
CMake Option provided for building XRT components with static linkage, but user has no choice https://github.com/Xilinx/XRT/blob/master/src/CMake/nativeLnx.cmake#L62-L73 The point of CMake options is to allow the person building your software to...
In Ubuntu, I can do `sudo apt-get install opencl-headers` It brings down this package: https://packages.ubuntu.com/bionic/opencl-c-headers Is there a tag in this repo that I can use to match the files...
https://github.com/Xilinx/XRT/blob/ca535535e3052f4157d84512b0be47f31aad8abd/src/runtime_src/core/include/deprecated/xrt.h#L176-L181 Should we make new enums, since these are depracated? `XRT_BO_SYNC_BO_TO_DEVICE` for example? Or maybe `xrt::bo::direction::to_device`
https://github.com/Xilinx/XRT/blob/d6826e2cef10228a92e4b4c6760477bf3b21133c/src/runtime_src/core/include/xrt/xrt_kernel.h#L307-L325
Can we add a utility like this somewhere? Use case is reporting / printing errors when run.wait() fails. ``` std::string to_string(ert_cmd_state state) { switch(state) { case ERT_CMD_STATE_NEW: return "NEW"; case...
I see this timestamp in my generated xml file: 831654275173 In Windows Performance Analyzer, I see that it correlates to: 22,860,603,300 ns I can't find any documentation anywhere that defines...
When you generate the GIF with the default example, for some reason a node gets generated for the main() function even though main() is not decorated. Is there a way...
#### Problem solved by the commit When foreign CMake projects link against XRT::xrt_coreutil The target's property INTERFACE_INCLUDE_DIRECTORIES is empty. Today our customers resolve this by doing ``` add_library(myLib myLib.cpp) target_include_directories(myLib...
https://github.com/ggerganov/ggml/blob/bb8d8cff851b2de6fde4904be492d39458837e1a/examples/simple/simple-ctx.cpp#L29 Can this magic number `1024` be explained, or perhaps improved to some calculation? Does it depend on the size of the output? (I notice that if I increase the...