Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/integration_tests_transfertuning.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,3 +75,6 @@ jobs:
docc -g -O3 -docc-tune=sequential -docc-transfer-tune -docc-save-temps matmul.c -o matmul.out
./matmul.out
cd ../../../../

cd llvm/integration/
pytest -v -rx polybench_transfertuning_test.py
1 change: 0 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@ if(NOT DEFINED PARENT_PROJECT_INSTALL_PREFIX)
endif()

add_subdirectory(sdfg)
add_subdirectory(examples/applications)
add_subdirectory(opt)
add_subdirectory(rpc)
add_subdirectory(rtl)
Expand Down
13 changes: 0 additions & 13 deletions examples/applications/CMakeLists.txt

This file was deleted.

209 changes: 0 additions & 209 deletions examples/applications/rpc_opt.cpp

This file was deleted.

2 changes: 1 addition & 1 deletion examples/transfer-server/src/ts/transfertuning/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import path from 'path';

const router = new Hono()

router.post('/transfertune', async (c) => {
router.post('/transfertune_sdfg', async (c) => {
// Optional testing mode: if paths are provided via headers, load JSONs from disk.
const filePath = path.resolve(__dirname, '../../../res/matmul');
const hint = c.req.header('RPC-Hint') ?? filePath
Expand Down
Loading
Loading