Skip to content

Commit

Permalink
structure changed
Browse files Browse the repository at this point in the history
  • Loading branch information
grazder committed Apr 10, 2024
1 parent 4a8e3e0 commit 53a212b
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ jobs:
run: git clone https://github.com/ggerganov/ggml.git

- name: Install Packages from requirements.txt
run: pip install -r requirements.txt
run: pip install -r model_utils/requirements.txt

- name: Saving Model Weights
run: python save_model_weights.py
run: python weights_export/export_model_weights.py

- name: Create Build Environment
run: mkdir build
Expand All @@ -33,6 +33,6 @@ jobs:
working-directory: ./build
run: make

- name: Test model.cpp
- name: Test
working-directory: ./build
run: ./model
run: ./template
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ project(simple_ggml_example)

add_subdirectory(ggml)

set(TEST_TARGET model)
add_executable(${TEST_TARGET} model.cpp)
set(TEST_TARGET template)
add_executable(${TEST_TARGET} template.cpp)
target_link_libraries(${TEST_TARGET} PRIVATE ggml)
target_compile_features(${TEST_TARGET} PUBLIC cxx_std_11)
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ make

Run:
```
./model
./template
```

## TODO
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 53a212b

Please sign in to comment.