Skip to content

Commit

Permalink
still doesn't work
Browse files Browse the repository at this point in the history
�[200~JIT session error: Symbols not found: [ __muldf3 ]
PLEASE submit a bug report to
https://github.com/llvm/llvm-project/issues/ and include the crash
backtrace.
Stack dump:
0.      Program arguments: ./tpp-run -n 5 -e entry
	-entry-point-result=void gemm_fp32.mlir
  • Loading branch information
alheinecke committed Feb 10, 2025
1 parent 32acfc9 commit d359117
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions tools/tpp-run/tpp-run.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,8 @@ llvm::cl::opt<std::string> triple("triple", llvm::cl::desc("Target triple"),
llvm::cl::init("x86_64-linux-gnu"));
#elif defined(__aarch64__)
llvm::cl::init("aarch64-linux-gnu"));
#elif defined(__riscv) && 64 == (__riscv_xlen)
llvm::cl::init("riscv64-linux-gnu"));
#else
#error Unsupported architecture
#endif
Expand All @@ -107,6 +109,8 @@ llvm::cl::opt<std::string>
llvm::cl::init("nehalem"));
#elif defined(__aarch64__)
llvm::cl::init("cortex-a53"));
#elif defined(__riscv) && 64 == (__riscv_xlen)
llvm::cl::init(""));
#else
#error Unsupported architecture
#endif
Expand All @@ -119,6 +123,8 @@ llvm::cl::opt<std::string>
llvm::cl::init("sse4.2"));
#elif defined(__aarch64__)
llvm::cl::init("neon"));
#elif defined(__riscv) && 64 == (__riscv_xlen)
llvm::cl::init(""));
#else
#error Unsupported architecture
#endif
Expand Down

0 comments on commit d359117

Please sign in to comment.