Skip to content

Commit 02da5c8

Browse files
authored
[SYCLomatic] Add llama.cpp into application test suite (#592)
Signed-off-by: Wang, Hao3 <[email protected]>
1 parent 2030fe0 commit 02da5c8

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+69618
-3
lines changed

.github/workflows/ci_lin.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ jobs:
3131
- test_suite: features
3232
- test_suite: api_coverage
3333
- test_suite: behavior_tests
34+
- test_suite: applications
3435
steps:
3536
- name: Process ENV
3637
id: process_env

applications/applications.xml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
3+
<suite>
4+
<description>applications test</description>
5+
<tests>
6+
<test testName="llama" configFile="config/TEMPLATE_llama.xml" />
7+
</tests>
8+
</suite>
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
3+
<test driverID="test_applications" name="TEMPLATE">
4+
<description>test</description>
5+
<files>
6+
<file path="src/llama" />
7+
</files>
8+
<rules>
9+
<platformRule OSFamily="Windows" runOnThisPlatform="false" />
10+
<optlevelRule excludeOptlevelNameString="usmnone" />
11+
</rules>
12+
</test>

applications/src/llama/LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2023 Georgi Gerganov
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

0 commit comments

Comments
 (0)