Text Generation
Transformers
Safetensors
GGUF
llama
chatbot
multilingual
arabic
french
tamazight
english
conversational
text-generation-inference
4-bit precision
bitsandbytes
Instructions to use kaisser/LLM-Maroc with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use kaisser/LLM-Maroc with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="kaisser/LLM-Maroc") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("kaisser/LLM-Maroc") model = AutoModelForCausalLM.from_pretrained("kaisser/LLM-Maroc") messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - llama-cpp-python
How to use kaisser/LLM-Maroc with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="kaisser/LLM-Maroc", filename="llama.cpp/models/ggml-vocab-aquila.gguf", )
llm.create_chat_completion( messages = [ { "role": "user", "content": "What is the capital of France?" } ] ) - Notebooks
- Google Colab
- Kaggle
- Local Apps
- llama.cpp
How to use kaisser/LLM-Maroc with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf kaisser/LLM-Maroc:BF16 # Run inference directly in the terminal: llama-cli -hf kaisser/LLM-Maroc:BF16
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf kaisser/LLM-Maroc:BF16 # Run inference directly in the terminal: llama-cli -hf kaisser/LLM-Maroc:BF16
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf kaisser/LLM-Maroc:BF16 # Run inference directly in the terminal: ./llama-cli -hf kaisser/LLM-Maroc:BF16
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf kaisser/LLM-Maroc:BF16 # Run inference directly in the terminal: ./build/bin/llama-cli -hf kaisser/LLM-Maroc:BF16
Use Docker
docker model run hf.co/kaisser/LLM-Maroc:BF16
- LM Studio
- Jan
- vLLM
How to use kaisser/LLM-Maroc with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "kaisser/LLM-Maroc" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "kaisser/LLM-Maroc", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/kaisser/LLM-Maroc:BF16
- SGLang
How to use kaisser/LLM-Maroc with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "kaisser/LLM-Maroc" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "kaisser/LLM-Maroc", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "kaisser/LLM-Maroc" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "kaisser/LLM-Maroc", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Ollama
How to use kaisser/LLM-Maroc with Ollama:
ollama run hf.co/kaisser/LLM-Maroc:BF16
- Unsloth Studio new
How to use kaisser/LLM-Maroc with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for kaisser/LLM-Maroc to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for kaisser/LLM-Maroc to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for kaisser/LLM-Maroc to start chatting
- Docker Model Runner
How to use kaisser/LLM-Maroc with Docker Model Runner:
docker model run hf.co/kaisser/LLM-Maroc:BF16
- Lemonade
How to use kaisser/LLM-Maroc with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull kaisser/LLM-Maroc:BF16
Run and chat with the model
lemonade run user.LLM-Maroc-BF16
List all available models
lemonade list
| # CMAKE generated file: DO NOT EDIT! | |
| # Generated by "Unix Makefiles" Generator, CMake Version 3.31 | |
| # Default target executed when no arguments are given to make. | |
| default_target: all | |
| .PHONY : default_target | |
| # Allow only one "make -f Makefile2" at a time, but pass parallelism. | |
| .NOTPARALLEL: | |
| #============================================================================= | |
| # Special targets provided by cmake. | |
| # Disable implicit rules so canonical targets will work. | |
| .SUFFIXES: | |
| # Disable VCS-based implicit rules. | |
| % : %,v | |
| # Disable VCS-based implicit rules. | |
| % : RCS/% | |
| # Disable VCS-based implicit rules. | |
| % : RCS/%,v | |
| # Disable VCS-based implicit rules. | |
| % : SCCS/s.% | |
| # Disable VCS-based implicit rules. | |
| % : s.% | |
| .SUFFIXES: .hpux_make_needs_suffix_list | |
| # Command-line flag to silence nested $(MAKE). | |
| $(VERBOSE)MAKESILENT = -s | |
| #Suppress display of executed commands. | |
| $(VERBOSE).SILENT: | |
| # A target that is always out of date. | |
| cmake_force: | |
| .PHONY : cmake_force | |
| #============================================================================= | |
| # Set environment variables for the build. | |
| # The shell in which to execute make rules. | |
| SHELL = /bin/sh | |
| # The CMake executable. | |
| CMAKE_COMMAND = /usr/local/lib/python3.11/dist-packages/cmake/data/bin/cmake | |
| # The command to remove a file. | |
| RM = /usr/local/lib/python3.11/dist-packages/cmake/data/bin/cmake -E rm -f | |
| # Escaping for special characters. | |
| EQUALS = = | |
| # The top-level source directory on which CMake was run. | |
| CMAKE_SOURCE_DIR = /content/llama.cpp | |
| # The top-level build directory on which CMake was run. | |
| CMAKE_BINARY_DIR = /content/llama.cpp/build | |
| #============================================================================= | |
| # Targets provided globally by CMake. | |
| # Special rule for the target test | |
| test: | |
| @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running tests..." | |
| /usr/local/lib/python3.11/dist-packages/cmake/data/bin/ctest --force-new-ctest-process $(ARGS) | |
| .PHONY : test | |
| # Special rule for the target test | |
| test/fast: test | |
| .PHONY : test/fast | |
| # Special rule for the target edit_cache | |
| edit_cache: | |
| @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "No interactive CMake dialog available..." | |
| /usr/local/lib/python3.11/dist-packages/cmake/data/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. | |
| .PHONY : edit_cache | |
| # Special rule for the target edit_cache | |
| edit_cache/fast: edit_cache | |
| .PHONY : edit_cache/fast | |
| # Special rule for the target rebuild_cache | |
| rebuild_cache: | |
| @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake to regenerate build system..." | |
| /usr/local/lib/python3.11/dist-packages/cmake/data/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) | |
| .PHONY : rebuild_cache | |
| # Special rule for the target rebuild_cache | |
| rebuild_cache/fast: rebuild_cache | |
| .PHONY : rebuild_cache/fast | |
| # Special rule for the target list_install_components | |
| list_install_components: | |
| @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Available install components are: \"Unspecified\"" | |
| .PHONY : list_install_components | |
| # Special rule for the target list_install_components | |
| list_install_components/fast: list_install_components | |
| .PHONY : list_install_components/fast | |
| # Special rule for the target install | |
| install: preinstall | |
| @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." | |
| /usr/local/lib/python3.11/dist-packages/cmake/data/bin/cmake -P cmake_install.cmake | |
| .PHONY : install | |
| # Special rule for the target install | |
| install/fast: preinstall/fast | |
| @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." | |
| /usr/local/lib/python3.11/dist-packages/cmake/data/bin/cmake -P cmake_install.cmake | |
| .PHONY : install/fast | |
| # Special rule for the target install/local | |
| install/local: preinstall | |
| @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." | |
| /usr/local/lib/python3.11/dist-packages/cmake/data/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake | |
| .PHONY : install/local | |
| # Special rule for the target install/local | |
| install/local/fast: preinstall/fast | |
| @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." | |
| /usr/local/lib/python3.11/dist-packages/cmake/data/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake | |
| .PHONY : install/local/fast | |
| # Special rule for the target install/strip | |
| install/strip: preinstall | |
| @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." | |
| /usr/local/lib/python3.11/dist-packages/cmake/data/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake | |
| .PHONY : install/strip | |
| # Special rule for the target install/strip | |
| install/strip/fast: preinstall/fast | |
| @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." | |
| /usr/local/lib/python3.11/dist-packages/cmake/data/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake | |
| .PHONY : install/strip/fast | |
| # The main all target | |
| all: cmake_check_build_system | |
| cd /content/llama.cpp/build && $(CMAKE_COMMAND) -E cmake_progress_start /content/llama.cpp/build/CMakeFiles /content/llama.cpp/build/tests//CMakeFiles/progress.marks | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 tests/all | |
| $(CMAKE_COMMAND) -E cmake_progress_start /content/llama.cpp/build/CMakeFiles 0 | |
| .PHONY : all | |
| # The main clean target | |
| clean: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 tests/clean | |
| .PHONY : clean | |
| # The main clean target | |
| clean/fast: clean | |
| .PHONY : clean/fast | |
| # Prepare targets for installation. | |
| preinstall: all | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 tests/preinstall | |
| .PHONY : preinstall | |
| # Prepare targets for installation. | |
| preinstall/fast: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 tests/preinstall | |
| .PHONY : preinstall/fast | |
| # clear depends | |
| depend: | |
| cd /content/llama.cpp/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 | |
| .PHONY : depend | |
| # Convenience name for target. | |
| tests/CMakeFiles/test-tokenizer-0.dir/rule: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 tests/CMakeFiles/test-tokenizer-0.dir/rule | |
| .PHONY : tests/CMakeFiles/test-tokenizer-0.dir/rule | |
| # Convenience name for target. | |
| test-tokenizer-0: tests/CMakeFiles/test-tokenizer-0.dir/rule | |
| .PHONY : test-tokenizer-0 | |
| # fast build rule for target. | |
| test-tokenizer-0/fast: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-tokenizer-0.dir/build.make tests/CMakeFiles/test-tokenizer-0.dir/build | |
| .PHONY : test-tokenizer-0/fast | |
| # Convenience name for target. | |
| tests/CMakeFiles/test-sampling.dir/rule: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 tests/CMakeFiles/test-sampling.dir/rule | |
| .PHONY : tests/CMakeFiles/test-sampling.dir/rule | |
| # Convenience name for target. | |
| test-sampling: tests/CMakeFiles/test-sampling.dir/rule | |
| .PHONY : test-sampling | |
| # fast build rule for target. | |
| test-sampling/fast: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-sampling.dir/build.make tests/CMakeFiles/test-sampling.dir/build | |
| .PHONY : test-sampling/fast | |
| # Convenience name for target. | |
| tests/CMakeFiles/test-grammar-parser.dir/rule: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 tests/CMakeFiles/test-grammar-parser.dir/rule | |
| .PHONY : tests/CMakeFiles/test-grammar-parser.dir/rule | |
| # Convenience name for target. | |
| test-grammar-parser: tests/CMakeFiles/test-grammar-parser.dir/rule | |
| .PHONY : test-grammar-parser | |
| # fast build rule for target. | |
| test-grammar-parser/fast: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-grammar-parser.dir/build.make tests/CMakeFiles/test-grammar-parser.dir/build | |
| .PHONY : test-grammar-parser/fast | |
| # Convenience name for target. | |
| tests/CMakeFiles/test-grammar-integration.dir/rule: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 tests/CMakeFiles/test-grammar-integration.dir/rule | |
| .PHONY : tests/CMakeFiles/test-grammar-integration.dir/rule | |
| # Convenience name for target. | |
| test-grammar-integration: tests/CMakeFiles/test-grammar-integration.dir/rule | |
| .PHONY : test-grammar-integration | |
| # fast build rule for target. | |
| test-grammar-integration/fast: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-grammar-integration.dir/build.make tests/CMakeFiles/test-grammar-integration.dir/build | |
| .PHONY : test-grammar-integration/fast | |
| # Convenience name for target. | |
| tests/CMakeFiles/test-llama-grammar.dir/rule: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 tests/CMakeFiles/test-llama-grammar.dir/rule | |
| .PHONY : tests/CMakeFiles/test-llama-grammar.dir/rule | |
| # Convenience name for target. | |
| test-llama-grammar: tests/CMakeFiles/test-llama-grammar.dir/rule | |
| .PHONY : test-llama-grammar | |
| # fast build rule for target. | |
| test-llama-grammar/fast: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-llama-grammar.dir/build.make tests/CMakeFiles/test-llama-grammar.dir/build | |
| .PHONY : test-llama-grammar/fast | |
| # Convenience name for target. | |
| tests/CMakeFiles/test-chat.dir/rule: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 tests/CMakeFiles/test-chat.dir/rule | |
| .PHONY : tests/CMakeFiles/test-chat.dir/rule | |
| # Convenience name for target. | |
| test-chat: tests/CMakeFiles/test-chat.dir/rule | |
| .PHONY : test-chat | |
| # fast build rule for target. | |
| test-chat/fast: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-chat.dir/build.make tests/CMakeFiles/test-chat.dir/build | |
| .PHONY : test-chat/fast | |
| # Convenience name for target. | |
| tests/CMakeFiles/test-json-schema-to-grammar.dir/rule: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 tests/CMakeFiles/test-json-schema-to-grammar.dir/rule | |
| .PHONY : tests/CMakeFiles/test-json-schema-to-grammar.dir/rule | |
| # Convenience name for target. | |
| test-json-schema-to-grammar: tests/CMakeFiles/test-json-schema-to-grammar.dir/rule | |
| .PHONY : test-json-schema-to-grammar | |
| # fast build rule for target. | |
| test-json-schema-to-grammar/fast: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-json-schema-to-grammar.dir/build.make tests/CMakeFiles/test-json-schema-to-grammar.dir/build | |
| .PHONY : test-json-schema-to-grammar/fast | |
| # Convenience name for target. | |
| tests/CMakeFiles/test-quantize-stats.dir/rule: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 tests/CMakeFiles/test-quantize-stats.dir/rule | |
| .PHONY : tests/CMakeFiles/test-quantize-stats.dir/rule | |
| # Convenience name for target. | |
| test-quantize-stats: tests/CMakeFiles/test-quantize-stats.dir/rule | |
| .PHONY : test-quantize-stats | |
| # fast build rule for target. | |
| test-quantize-stats/fast: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-quantize-stats.dir/build.make tests/CMakeFiles/test-quantize-stats.dir/build | |
| .PHONY : test-quantize-stats/fast | |
| # Convenience name for target. | |
| tests/CMakeFiles/test-gbnf-validator.dir/rule: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 tests/CMakeFiles/test-gbnf-validator.dir/rule | |
| .PHONY : tests/CMakeFiles/test-gbnf-validator.dir/rule | |
| # Convenience name for target. | |
| test-gbnf-validator: tests/CMakeFiles/test-gbnf-validator.dir/rule | |
| .PHONY : test-gbnf-validator | |
| # fast build rule for target. | |
| test-gbnf-validator/fast: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-gbnf-validator.dir/build.make tests/CMakeFiles/test-gbnf-validator.dir/build | |
| .PHONY : test-gbnf-validator/fast | |
| # Convenience name for target. | |
| tests/CMakeFiles/test-tokenizer-1-bpe.dir/rule: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 tests/CMakeFiles/test-tokenizer-1-bpe.dir/rule | |
| .PHONY : tests/CMakeFiles/test-tokenizer-1-bpe.dir/rule | |
| # Convenience name for target. | |
| test-tokenizer-1-bpe: tests/CMakeFiles/test-tokenizer-1-bpe.dir/rule | |
| .PHONY : test-tokenizer-1-bpe | |
| # fast build rule for target. | |
| test-tokenizer-1-bpe/fast: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-tokenizer-1-bpe.dir/build.make tests/CMakeFiles/test-tokenizer-1-bpe.dir/build | |
| .PHONY : test-tokenizer-1-bpe/fast | |
| # Convenience name for target. | |
| tests/CMakeFiles/test-tokenizer-1-spm.dir/rule: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 tests/CMakeFiles/test-tokenizer-1-spm.dir/rule | |
| .PHONY : tests/CMakeFiles/test-tokenizer-1-spm.dir/rule | |
| # Convenience name for target. | |
| test-tokenizer-1-spm: tests/CMakeFiles/test-tokenizer-1-spm.dir/rule | |
| .PHONY : test-tokenizer-1-spm | |
| # fast build rule for target. | |
| test-tokenizer-1-spm/fast: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-tokenizer-1-spm.dir/build.make tests/CMakeFiles/test-tokenizer-1-spm.dir/build | |
| .PHONY : test-tokenizer-1-spm/fast | |
| # Convenience name for target. | |
| tests/CMakeFiles/test-chat-parser.dir/rule: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 tests/CMakeFiles/test-chat-parser.dir/rule | |
| .PHONY : tests/CMakeFiles/test-chat-parser.dir/rule | |
| # Convenience name for target. | |
| test-chat-parser: tests/CMakeFiles/test-chat-parser.dir/rule | |
| .PHONY : test-chat-parser | |
| # fast build rule for target. | |
| test-chat-parser/fast: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-chat-parser.dir/build.make tests/CMakeFiles/test-chat-parser.dir/build | |
| .PHONY : test-chat-parser/fast | |
| # Convenience name for target. | |
| tests/CMakeFiles/test-chat-template.dir/rule: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 tests/CMakeFiles/test-chat-template.dir/rule | |
| .PHONY : tests/CMakeFiles/test-chat-template.dir/rule | |
| # Convenience name for target. | |
| test-chat-template: tests/CMakeFiles/test-chat-template.dir/rule | |
| .PHONY : test-chat-template | |
| # fast build rule for target. | |
| test-chat-template/fast: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-chat-template.dir/build.make tests/CMakeFiles/test-chat-template.dir/build | |
| .PHONY : test-chat-template/fast | |
| # Convenience name for target. | |
| tests/CMakeFiles/test-json-partial.dir/rule: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 tests/CMakeFiles/test-json-partial.dir/rule | |
| .PHONY : tests/CMakeFiles/test-json-partial.dir/rule | |
| # Convenience name for target. | |
| test-json-partial: tests/CMakeFiles/test-json-partial.dir/rule | |
| .PHONY : test-json-partial | |
| # fast build rule for target. | |
| test-json-partial/fast: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-json-partial.dir/build.make tests/CMakeFiles/test-json-partial.dir/build | |
| .PHONY : test-json-partial/fast | |
| # Convenience name for target. | |
| tests/CMakeFiles/test-log.dir/rule: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 tests/CMakeFiles/test-log.dir/rule | |
| .PHONY : tests/CMakeFiles/test-log.dir/rule | |
| # Convenience name for target. | |
| test-log: tests/CMakeFiles/test-log.dir/rule | |
| .PHONY : test-log | |
| # fast build rule for target. | |
| test-log/fast: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-log.dir/build.make tests/CMakeFiles/test-log.dir/build | |
| .PHONY : test-log/fast | |
| # Convenience name for target. | |
| tests/CMakeFiles/test-regex-partial.dir/rule: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 tests/CMakeFiles/test-regex-partial.dir/rule | |
| .PHONY : tests/CMakeFiles/test-regex-partial.dir/rule | |
| # Convenience name for target. | |
| test-regex-partial: tests/CMakeFiles/test-regex-partial.dir/rule | |
| .PHONY : test-regex-partial | |
| # fast build rule for target. | |
| test-regex-partial/fast: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-regex-partial.dir/build.make tests/CMakeFiles/test-regex-partial.dir/build | |
| .PHONY : test-regex-partial/fast | |
| # Convenience name for target. | |
| tests/CMakeFiles/test-thread-safety.dir/rule: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 tests/CMakeFiles/test-thread-safety.dir/rule | |
| .PHONY : tests/CMakeFiles/test-thread-safety.dir/rule | |
| # Convenience name for target. | |
| test-thread-safety: tests/CMakeFiles/test-thread-safety.dir/rule | |
| .PHONY : test-thread-safety | |
| # fast build rule for target. | |
| test-thread-safety/fast: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-thread-safety.dir/build.make tests/CMakeFiles/test-thread-safety.dir/build | |
| .PHONY : test-thread-safety/fast | |
| # Convenience name for target. | |
| tests/CMakeFiles/test-arg-parser.dir/rule: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 tests/CMakeFiles/test-arg-parser.dir/rule | |
| .PHONY : tests/CMakeFiles/test-arg-parser.dir/rule | |
| # Convenience name for target. | |
| test-arg-parser: tests/CMakeFiles/test-arg-parser.dir/rule | |
| .PHONY : test-arg-parser | |
| # fast build rule for target. | |
| test-arg-parser/fast: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-arg-parser.dir/build.make tests/CMakeFiles/test-arg-parser.dir/build | |
| .PHONY : test-arg-parser/fast | |
| # Convenience name for target. | |
| tests/CMakeFiles/test-gguf.dir/rule: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 tests/CMakeFiles/test-gguf.dir/rule | |
| .PHONY : tests/CMakeFiles/test-gguf.dir/rule | |
| # Convenience name for target. | |
| test-gguf: tests/CMakeFiles/test-gguf.dir/rule | |
| .PHONY : test-gguf | |
| # fast build rule for target. | |
| test-gguf/fast: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-gguf.dir/build.make tests/CMakeFiles/test-gguf.dir/build | |
| .PHONY : test-gguf/fast | |
| # Convenience name for target. | |
| tests/CMakeFiles/test-backend-ops.dir/rule: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 tests/CMakeFiles/test-backend-ops.dir/rule | |
| .PHONY : tests/CMakeFiles/test-backend-ops.dir/rule | |
| # Convenience name for target. | |
| test-backend-ops: tests/CMakeFiles/test-backend-ops.dir/rule | |
| .PHONY : test-backend-ops | |
| # fast build rule for target. | |
| test-backend-ops/fast: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-backend-ops.dir/build.make tests/CMakeFiles/test-backend-ops.dir/build | |
| .PHONY : test-backend-ops/fast | |
| # Convenience name for target. | |
| tests/CMakeFiles/test-model-load-cancel.dir/rule: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 tests/CMakeFiles/test-model-load-cancel.dir/rule | |
| .PHONY : tests/CMakeFiles/test-model-load-cancel.dir/rule | |
| # Convenience name for target. | |
| test-model-load-cancel: tests/CMakeFiles/test-model-load-cancel.dir/rule | |
| .PHONY : test-model-load-cancel | |
| # fast build rule for target. | |
| test-model-load-cancel/fast: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-model-load-cancel.dir/build.make tests/CMakeFiles/test-model-load-cancel.dir/build | |
| .PHONY : test-model-load-cancel/fast | |
| # Convenience name for target. | |
| tests/CMakeFiles/test-autorelease.dir/rule: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 tests/CMakeFiles/test-autorelease.dir/rule | |
| .PHONY : tests/CMakeFiles/test-autorelease.dir/rule | |
| # Convenience name for target. | |
| test-autorelease: tests/CMakeFiles/test-autorelease.dir/rule | |
| .PHONY : test-autorelease | |
| # fast build rule for target. | |
| test-autorelease/fast: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-autorelease.dir/build.make tests/CMakeFiles/test-autorelease.dir/build | |
| .PHONY : test-autorelease/fast | |
| # Convenience name for target. | |
| tests/CMakeFiles/test-barrier.dir/rule: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 tests/CMakeFiles/test-barrier.dir/rule | |
| .PHONY : tests/CMakeFiles/test-barrier.dir/rule | |
| # Convenience name for target. | |
| test-barrier: tests/CMakeFiles/test-barrier.dir/rule | |
| .PHONY : test-barrier | |
| # fast build rule for target. | |
| test-barrier/fast: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-barrier.dir/build.make tests/CMakeFiles/test-barrier.dir/build | |
| .PHONY : test-barrier/fast | |
| # Convenience name for target. | |
| tests/CMakeFiles/test-quantize-fns.dir/rule: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 tests/CMakeFiles/test-quantize-fns.dir/rule | |
| .PHONY : tests/CMakeFiles/test-quantize-fns.dir/rule | |
| # Convenience name for target. | |
| test-quantize-fns: tests/CMakeFiles/test-quantize-fns.dir/rule | |
| .PHONY : test-quantize-fns | |
| # fast build rule for target. | |
| test-quantize-fns/fast: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-quantize-fns.dir/build.make tests/CMakeFiles/test-quantize-fns.dir/build | |
| .PHONY : test-quantize-fns/fast | |
| # Convenience name for target. | |
| tests/CMakeFiles/test-quantize-perf.dir/rule: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 tests/CMakeFiles/test-quantize-perf.dir/rule | |
| .PHONY : tests/CMakeFiles/test-quantize-perf.dir/rule | |
| # Convenience name for target. | |
| test-quantize-perf: tests/CMakeFiles/test-quantize-perf.dir/rule | |
| .PHONY : test-quantize-perf | |
| # fast build rule for target. | |
| test-quantize-perf/fast: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-quantize-perf.dir/build.make tests/CMakeFiles/test-quantize-perf.dir/build | |
| .PHONY : test-quantize-perf/fast | |
| # Convenience name for target. | |
| tests/CMakeFiles/test-rope.dir/rule: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 tests/CMakeFiles/test-rope.dir/rule | |
| .PHONY : tests/CMakeFiles/test-rope.dir/rule | |
| # Convenience name for target. | |
| test-rope: tests/CMakeFiles/test-rope.dir/rule | |
| .PHONY : test-rope | |
| # fast build rule for target. | |
| test-rope/fast: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-rope.dir/build.make tests/CMakeFiles/test-rope.dir/build | |
| .PHONY : test-rope/fast | |
| # Convenience name for target. | |
| tests/CMakeFiles/test-mtmd-c-api.dir/rule: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 tests/CMakeFiles/test-mtmd-c-api.dir/rule | |
| .PHONY : tests/CMakeFiles/test-mtmd-c-api.dir/rule | |
| # Convenience name for target. | |
| test-mtmd-c-api: tests/CMakeFiles/test-mtmd-c-api.dir/rule | |
| .PHONY : test-mtmd-c-api | |
| # fast build rule for target. | |
| test-mtmd-c-api/fast: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-mtmd-c-api.dir/build.make tests/CMakeFiles/test-mtmd-c-api.dir/build | |
| .PHONY : test-mtmd-c-api/fast | |
| # Convenience name for target. | |
| tests/CMakeFiles/test-c.dir/rule: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 tests/CMakeFiles/test-c.dir/rule | |
| .PHONY : tests/CMakeFiles/test-c.dir/rule | |
| # Convenience name for target. | |
| test-c: tests/CMakeFiles/test-c.dir/rule | |
| .PHONY : test-c | |
| # fast build rule for target. | |
| test-c/fast: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-c.dir/build.make tests/CMakeFiles/test-c.dir/build | |
| .PHONY : test-c/fast | |
| get-model.o: get-model.cpp.o | |
| .PHONY : get-model.o | |
| # target to build an object file | |
| get-model.cpp.o: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-sampling.dir/build.make tests/CMakeFiles/test-sampling.dir/get-model.cpp.o | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-grammar-parser.dir/build.make tests/CMakeFiles/test-grammar-parser.dir/get-model.cpp.o | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-grammar-integration.dir/build.make tests/CMakeFiles/test-grammar-integration.dir/get-model.cpp.o | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-llama-grammar.dir/build.make tests/CMakeFiles/test-llama-grammar.dir/get-model.cpp.o | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-chat.dir/build.make tests/CMakeFiles/test-chat.dir/get-model.cpp.o | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-json-schema-to-grammar.dir/build.make tests/CMakeFiles/test-json-schema-to-grammar.dir/get-model.cpp.o | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-chat-parser.dir/build.make tests/CMakeFiles/test-chat-parser.dir/get-model.cpp.o | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-chat-template.dir/build.make tests/CMakeFiles/test-chat-template.dir/get-model.cpp.o | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-json-partial.dir/build.make tests/CMakeFiles/test-json-partial.dir/get-model.cpp.o | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-log.dir/build.make tests/CMakeFiles/test-log.dir/get-model.cpp.o | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-regex-partial.dir/build.make tests/CMakeFiles/test-regex-partial.dir/get-model.cpp.o | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-thread-safety.dir/build.make tests/CMakeFiles/test-thread-safety.dir/get-model.cpp.o | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-arg-parser.dir/build.make tests/CMakeFiles/test-arg-parser.dir/get-model.cpp.o | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-gguf.dir/build.make tests/CMakeFiles/test-gguf.dir/get-model.cpp.o | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-backend-ops.dir/build.make tests/CMakeFiles/test-backend-ops.dir/get-model.cpp.o | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-model-load-cancel.dir/build.make tests/CMakeFiles/test-model-load-cancel.dir/get-model.cpp.o | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-autorelease.dir/build.make tests/CMakeFiles/test-autorelease.dir/get-model.cpp.o | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-barrier.dir/build.make tests/CMakeFiles/test-barrier.dir/get-model.cpp.o | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-quantize-fns.dir/build.make tests/CMakeFiles/test-quantize-fns.dir/get-model.cpp.o | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-quantize-perf.dir/build.make tests/CMakeFiles/test-quantize-perf.dir/get-model.cpp.o | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-rope.dir/build.make tests/CMakeFiles/test-rope.dir/get-model.cpp.o | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-mtmd-c-api.dir/build.make tests/CMakeFiles/test-mtmd-c-api.dir/get-model.cpp.o | |
| .PHONY : get-model.cpp.o | |
| get-model.i: get-model.cpp.i | |
| .PHONY : get-model.i | |
| # target to preprocess a source file | |
| get-model.cpp.i: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-sampling.dir/build.make tests/CMakeFiles/test-sampling.dir/get-model.cpp.i | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-grammar-parser.dir/build.make tests/CMakeFiles/test-grammar-parser.dir/get-model.cpp.i | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-grammar-integration.dir/build.make tests/CMakeFiles/test-grammar-integration.dir/get-model.cpp.i | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-llama-grammar.dir/build.make tests/CMakeFiles/test-llama-grammar.dir/get-model.cpp.i | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-chat.dir/build.make tests/CMakeFiles/test-chat.dir/get-model.cpp.i | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-json-schema-to-grammar.dir/build.make tests/CMakeFiles/test-json-schema-to-grammar.dir/get-model.cpp.i | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-chat-parser.dir/build.make tests/CMakeFiles/test-chat-parser.dir/get-model.cpp.i | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-chat-template.dir/build.make tests/CMakeFiles/test-chat-template.dir/get-model.cpp.i | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-json-partial.dir/build.make tests/CMakeFiles/test-json-partial.dir/get-model.cpp.i | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-log.dir/build.make tests/CMakeFiles/test-log.dir/get-model.cpp.i | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-regex-partial.dir/build.make tests/CMakeFiles/test-regex-partial.dir/get-model.cpp.i | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-thread-safety.dir/build.make tests/CMakeFiles/test-thread-safety.dir/get-model.cpp.i | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-arg-parser.dir/build.make tests/CMakeFiles/test-arg-parser.dir/get-model.cpp.i | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-gguf.dir/build.make tests/CMakeFiles/test-gguf.dir/get-model.cpp.i | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-backend-ops.dir/build.make tests/CMakeFiles/test-backend-ops.dir/get-model.cpp.i | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-model-load-cancel.dir/build.make tests/CMakeFiles/test-model-load-cancel.dir/get-model.cpp.i | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-autorelease.dir/build.make tests/CMakeFiles/test-autorelease.dir/get-model.cpp.i | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-barrier.dir/build.make tests/CMakeFiles/test-barrier.dir/get-model.cpp.i | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-quantize-fns.dir/build.make tests/CMakeFiles/test-quantize-fns.dir/get-model.cpp.i | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-quantize-perf.dir/build.make tests/CMakeFiles/test-quantize-perf.dir/get-model.cpp.i | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-rope.dir/build.make tests/CMakeFiles/test-rope.dir/get-model.cpp.i | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-mtmd-c-api.dir/build.make tests/CMakeFiles/test-mtmd-c-api.dir/get-model.cpp.i | |
| .PHONY : get-model.cpp.i | |
| get-model.s: get-model.cpp.s | |
| .PHONY : get-model.s | |
| # target to generate assembly for a file | |
| get-model.cpp.s: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-sampling.dir/build.make tests/CMakeFiles/test-sampling.dir/get-model.cpp.s | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-grammar-parser.dir/build.make tests/CMakeFiles/test-grammar-parser.dir/get-model.cpp.s | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-grammar-integration.dir/build.make tests/CMakeFiles/test-grammar-integration.dir/get-model.cpp.s | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-llama-grammar.dir/build.make tests/CMakeFiles/test-llama-grammar.dir/get-model.cpp.s | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-chat.dir/build.make tests/CMakeFiles/test-chat.dir/get-model.cpp.s | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-json-schema-to-grammar.dir/build.make tests/CMakeFiles/test-json-schema-to-grammar.dir/get-model.cpp.s | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-chat-parser.dir/build.make tests/CMakeFiles/test-chat-parser.dir/get-model.cpp.s | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-chat-template.dir/build.make tests/CMakeFiles/test-chat-template.dir/get-model.cpp.s | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-json-partial.dir/build.make tests/CMakeFiles/test-json-partial.dir/get-model.cpp.s | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-log.dir/build.make tests/CMakeFiles/test-log.dir/get-model.cpp.s | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-regex-partial.dir/build.make tests/CMakeFiles/test-regex-partial.dir/get-model.cpp.s | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-thread-safety.dir/build.make tests/CMakeFiles/test-thread-safety.dir/get-model.cpp.s | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-arg-parser.dir/build.make tests/CMakeFiles/test-arg-parser.dir/get-model.cpp.s | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-gguf.dir/build.make tests/CMakeFiles/test-gguf.dir/get-model.cpp.s | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-backend-ops.dir/build.make tests/CMakeFiles/test-backend-ops.dir/get-model.cpp.s | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-model-load-cancel.dir/build.make tests/CMakeFiles/test-model-load-cancel.dir/get-model.cpp.s | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-autorelease.dir/build.make tests/CMakeFiles/test-autorelease.dir/get-model.cpp.s | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-barrier.dir/build.make tests/CMakeFiles/test-barrier.dir/get-model.cpp.s | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-quantize-fns.dir/build.make tests/CMakeFiles/test-quantize-fns.dir/get-model.cpp.s | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-quantize-perf.dir/build.make tests/CMakeFiles/test-quantize-perf.dir/get-model.cpp.s | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-rope.dir/build.make tests/CMakeFiles/test-rope.dir/get-model.cpp.s | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-mtmd-c-api.dir/build.make tests/CMakeFiles/test-mtmd-c-api.dir/get-model.cpp.s | |
| .PHONY : get-model.cpp.s | |
| test-arg-parser.o: test-arg-parser.cpp.o | |
| .PHONY : test-arg-parser.o | |
| # target to build an object file | |
| test-arg-parser.cpp.o: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-arg-parser.dir/build.make tests/CMakeFiles/test-arg-parser.dir/test-arg-parser.cpp.o | |
| .PHONY : test-arg-parser.cpp.o | |
| test-arg-parser.i: test-arg-parser.cpp.i | |
| .PHONY : test-arg-parser.i | |
| # target to preprocess a source file | |
| test-arg-parser.cpp.i: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-arg-parser.dir/build.make tests/CMakeFiles/test-arg-parser.dir/test-arg-parser.cpp.i | |
| .PHONY : test-arg-parser.cpp.i | |
| test-arg-parser.s: test-arg-parser.cpp.s | |
| .PHONY : test-arg-parser.s | |
| # target to generate assembly for a file | |
| test-arg-parser.cpp.s: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-arg-parser.dir/build.make tests/CMakeFiles/test-arg-parser.dir/test-arg-parser.cpp.s | |
| .PHONY : test-arg-parser.cpp.s | |
| test-autorelease.o: test-autorelease.cpp.o | |
| .PHONY : test-autorelease.o | |
| # target to build an object file | |
| test-autorelease.cpp.o: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-autorelease.dir/build.make tests/CMakeFiles/test-autorelease.dir/test-autorelease.cpp.o | |
| .PHONY : test-autorelease.cpp.o | |
| test-autorelease.i: test-autorelease.cpp.i | |
| .PHONY : test-autorelease.i | |
| # target to preprocess a source file | |
| test-autorelease.cpp.i: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-autorelease.dir/build.make tests/CMakeFiles/test-autorelease.dir/test-autorelease.cpp.i | |
| .PHONY : test-autorelease.cpp.i | |
| test-autorelease.s: test-autorelease.cpp.s | |
| .PHONY : test-autorelease.s | |
| # target to generate assembly for a file | |
| test-autorelease.cpp.s: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-autorelease.dir/build.make tests/CMakeFiles/test-autorelease.dir/test-autorelease.cpp.s | |
| .PHONY : test-autorelease.cpp.s | |
| test-backend-ops.o: test-backend-ops.cpp.o | |
| .PHONY : test-backend-ops.o | |
| # target to build an object file | |
| test-backend-ops.cpp.o: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-backend-ops.dir/build.make tests/CMakeFiles/test-backend-ops.dir/test-backend-ops.cpp.o | |
| .PHONY : test-backend-ops.cpp.o | |
| test-backend-ops.i: test-backend-ops.cpp.i | |
| .PHONY : test-backend-ops.i | |
| # target to preprocess a source file | |
| test-backend-ops.cpp.i: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-backend-ops.dir/build.make tests/CMakeFiles/test-backend-ops.dir/test-backend-ops.cpp.i | |
| .PHONY : test-backend-ops.cpp.i | |
| test-backend-ops.s: test-backend-ops.cpp.s | |
| .PHONY : test-backend-ops.s | |
| # target to generate assembly for a file | |
| test-backend-ops.cpp.s: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-backend-ops.dir/build.make tests/CMakeFiles/test-backend-ops.dir/test-backend-ops.cpp.s | |
| .PHONY : test-backend-ops.cpp.s | |
| test-barrier.o: test-barrier.cpp.o | |
| .PHONY : test-barrier.o | |
| # target to build an object file | |
| test-barrier.cpp.o: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-barrier.dir/build.make tests/CMakeFiles/test-barrier.dir/test-barrier.cpp.o | |
| .PHONY : test-barrier.cpp.o | |
| test-barrier.i: test-barrier.cpp.i | |
| .PHONY : test-barrier.i | |
| # target to preprocess a source file | |
| test-barrier.cpp.i: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-barrier.dir/build.make tests/CMakeFiles/test-barrier.dir/test-barrier.cpp.i | |
| .PHONY : test-barrier.cpp.i | |
| test-barrier.s: test-barrier.cpp.s | |
| .PHONY : test-barrier.s | |
| # target to generate assembly for a file | |
| test-barrier.cpp.s: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-barrier.dir/build.make tests/CMakeFiles/test-barrier.dir/test-barrier.cpp.s | |
| .PHONY : test-barrier.cpp.s | |
| test-c.o: test-c.c.o | |
| .PHONY : test-c.o | |
| # target to build an object file | |
| test-c.c.o: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-c.dir/build.make tests/CMakeFiles/test-c.dir/test-c.c.o | |
| .PHONY : test-c.c.o | |
| test-c.i: test-c.c.i | |
| .PHONY : test-c.i | |
| # target to preprocess a source file | |
| test-c.c.i: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-c.dir/build.make tests/CMakeFiles/test-c.dir/test-c.c.i | |
| .PHONY : test-c.c.i | |
| test-c.s: test-c.c.s | |
| .PHONY : test-c.s | |
| # target to generate assembly for a file | |
| test-c.c.s: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-c.dir/build.make tests/CMakeFiles/test-c.dir/test-c.c.s | |
| .PHONY : test-c.c.s | |
| test-chat-parser.o: test-chat-parser.cpp.o | |
| .PHONY : test-chat-parser.o | |
| # target to build an object file | |
| test-chat-parser.cpp.o: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-chat-parser.dir/build.make tests/CMakeFiles/test-chat-parser.dir/test-chat-parser.cpp.o | |
| .PHONY : test-chat-parser.cpp.o | |
| test-chat-parser.i: test-chat-parser.cpp.i | |
| .PHONY : test-chat-parser.i | |
| # target to preprocess a source file | |
| test-chat-parser.cpp.i: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-chat-parser.dir/build.make tests/CMakeFiles/test-chat-parser.dir/test-chat-parser.cpp.i | |
| .PHONY : test-chat-parser.cpp.i | |
| test-chat-parser.s: test-chat-parser.cpp.s | |
| .PHONY : test-chat-parser.s | |
| # target to generate assembly for a file | |
| test-chat-parser.cpp.s: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-chat-parser.dir/build.make tests/CMakeFiles/test-chat-parser.dir/test-chat-parser.cpp.s | |
| .PHONY : test-chat-parser.cpp.s | |
| test-chat-template.o: test-chat-template.cpp.o | |
| .PHONY : test-chat-template.o | |
| # target to build an object file | |
| test-chat-template.cpp.o: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-chat-template.dir/build.make tests/CMakeFiles/test-chat-template.dir/test-chat-template.cpp.o | |
| .PHONY : test-chat-template.cpp.o | |
| test-chat-template.i: test-chat-template.cpp.i | |
| .PHONY : test-chat-template.i | |
| # target to preprocess a source file | |
| test-chat-template.cpp.i: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-chat-template.dir/build.make tests/CMakeFiles/test-chat-template.dir/test-chat-template.cpp.i | |
| .PHONY : test-chat-template.cpp.i | |
| test-chat-template.s: test-chat-template.cpp.s | |
| .PHONY : test-chat-template.s | |
| # target to generate assembly for a file | |
| test-chat-template.cpp.s: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-chat-template.dir/build.make tests/CMakeFiles/test-chat-template.dir/test-chat-template.cpp.s | |
| .PHONY : test-chat-template.cpp.s | |
| test-chat.o: test-chat.cpp.o | |
| .PHONY : test-chat.o | |
| # target to build an object file | |
| test-chat.cpp.o: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-chat.dir/build.make tests/CMakeFiles/test-chat.dir/test-chat.cpp.o | |
| .PHONY : test-chat.cpp.o | |
| test-chat.i: test-chat.cpp.i | |
| .PHONY : test-chat.i | |
| # target to preprocess a source file | |
| test-chat.cpp.i: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-chat.dir/build.make tests/CMakeFiles/test-chat.dir/test-chat.cpp.i | |
| .PHONY : test-chat.cpp.i | |
| test-chat.s: test-chat.cpp.s | |
| .PHONY : test-chat.s | |
| # target to generate assembly for a file | |
| test-chat.cpp.s: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-chat.dir/build.make tests/CMakeFiles/test-chat.dir/test-chat.cpp.s | |
| .PHONY : test-chat.cpp.s | |
| test-gbnf-validator.o: test-gbnf-validator.cpp.o | |
| .PHONY : test-gbnf-validator.o | |
| # target to build an object file | |
| test-gbnf-validator.cpp.o: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-gbnf-validator.dir/build.make tests/CMakeFiles/test-gbnf-validator.dir/test-gbnf-validator.cpp.o | |
| .PHONY : test-gbnf-validator.cpp.o | |
| test-gbnf-validator.i: test-gbnf-validator.cpp.i | |
| .PHONY : test-gbnf-validator.i | |
| # target to preprocess a source file | |
| test-gbnf-validator.cpp.i: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-gbnf-validator.dir/build.make tests/CMakeFiles/test-gbnf-validator.dir/test-gbnf-validator.cpp.i | |
| .PHONY : test-gbnf-validator.cpp.i | |
| test-gbnf-validator.s: test-gbnf-validator.cpp.s | |
| .PHONY : test-gbnf-validator.s | |
| # target to generate assembly for a file | |
| test-gbnf-validator.cpp.s: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-gbnf-validator.dir/build.make tests/CMakeFiles/test-gbnf-validator.dir/test-gbnf-validator.cpp.s | |
| .PHONY : test-gbnf-validator.cpp.s | |
| test-gguf.o: test-gguf.cpp.o | |
| .PHONY : test-gguf.o | |
| # target to build an object file | |
| test-gguf.cpp.o: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-gguf.dir/build.make tests/CMakeFiles/test-gguf.dir/test-gguf.cpp.o | |
| .PHONY : test-gguf.cpp.o | |
| test-gguf.i: test-gguf.cpp.i | |
| .PHONY : test-gguf.i | |
| # target to preprocess a source file | |
| test-gguf.cpp.i: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-gguf.dir/build.make tests/CMakeFiles/test-gguf.dir/test-gguf.cpp.i | |
| .PHONY : test-gguf.cpp.i | |
| test-gguf.s: test-gguf.cpp.s | |
| .PHONY : test-gguf.s | |
| # target to generate assembly for a file | |
| test-gguf.cpp.s: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-gguf.dir/build.make tests/CMakeFiles/test-gguf.dir/test-gguf.cpp.s | |
| .PHONY : test-gguf.cpp.s | |
| test-grammar-integration.o: test-grammar-integration.cpp.o | |
| .PHONY : test-grammar-integration.o | |
| # target to build an object file | |
| test-grammar-integration.cpp.o: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-grammar-integration.dir/build.make tests/CMakeFiles/test-grammar-integration.dir/test-grammar-integration.cpp.o | |
| .PHONY : test-grammar-integration.cpp.o | |
| test-grammar-integration.i: test-grammar-integration.cpp.i | |
| .PHONY : test-grammar-integration.i | |
| # target to preprocess a source file | |
| test-grammar-integration.cpp.i: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-grammar-integration.dir/build.make tests/CMakeFiles/test-grammar-integration.dir/test-grammar-integration.cpp.i | |
| .PHONY : test-grammar-integration.cpp.i | |
| test-grammar-integration.s: test-grammar-integration.cpp.s | |
| .PHONY : test-grammar-integration.s | |
| # target to generate assembly for a file | |
| test-grammar-integration.cpp.s: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-grammar-integration.dir/build.make tests/CMakeFiles/test-grammar-integration.dir/test-grammar-integration.cpp.s | |
| .PHONY : test-grammar-integration.cpp.s | |
| test-grammar-parser.o: test-grammar-parser.cpp.o | |
| .PHONY : test-grammar-parser.o | |
| # target to build an object file | |
| test-grammar-parser.cpp.o: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-grammar-parser.dir/build.make tests/CMakeFiles/test-grammar-parser.dir/test-grammar-parser.cpp.o | |
| .PHONY : test-grammar-parser.cpp.o | |
| test-grammar-parser.i: test-grammar-parser.cpp.i | |
| .PHONY : test-grammar-parser.i | |
| # target to preprocess a source file | |
| test-grammar-parser.cpp.i: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-grammar-parser.dir/build.make tests/CMakeFiles/test-grammar-parser.dir/test-grammar-parser.cpp.i | |
| .PHONY : test-grammar-parser.cpp.i | |
| test-grammar-parser.s: test-grammar-parser.cpp.s | |
| .PHONY : test-grammar-parser.s | |
| # target to generate assembly for a file | |
| test-grammar-parser.cpp.s: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-grammar-parser.dir/build.make tests/CMakeFiles/test-grammar-parser.dir/test-grammar-parser.cpp.s | |
| .PHONY : test-grammar-parser.cpp.s | |
| test-json-partial.o: test-json-partial.cpp.o | |
| .PHONY : test-json-partial.o | |
| # target to build an object file | |
| test-json-partial.cpp.o: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-json-partial.dir/build.make tests/CMakeFiles/test-json-partial.dir/test-json-partial.cpp.o | |
| .PHONY : test-json-partial.cpp.o | |
| test-json-partial.i: test-json-partial.cpp.i | |
| .PHONY : test-json-partial.i | |
| # target to preprocess a source file | |
| test-json-partial.cpp.i: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-json-partial.dir/build.make tests/CMakeFiles/test-json-partial.dir/test-json-partial.cpp.i | |
| .PHONY : test-json-partial.cpp.i | |
| test-json-partial.s: test-json-partial.cpp.s | |
| .PHONY : test-json-partial.s | |
| # target to generate assembly for a file | |
| test-json-partial.cpp.s: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-json-partial.dir/build.make tests/CMakeFiles/test-json-partial.dir/test-json-partial.cpp.s | |
| .PHONY : test-json-partial.cpp.s | |
| test-json-schema-to-grammar.o: test-json-schema-to-grammar.cpp.o | |
| .PHONY : test-json-schema-to-grammar.o | |
| # target to build an object file | |
| test-json-schema-to-grammar.cpp.o: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-json-schema-to-grammar.dir/build.make tests/CMakeFiles/test-json-schema-to-grammar.dir/test-json-schema-to-grammar.cpp.o | |
| .PHONY : test-json-schema-to-grammar.cpp.o | |
| test-json-schema-to-grammar.i: test-json-schema-to-grammar.cpp.i | |
| .PHONY : test-json-schema-to-grammar.i | |
| # target to preprocess a source file | |
| test-json-schema-to-grammar.cpp.i: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-json-schema-to-grammar.dir/build.make tests/CMakeFiles/test-json-schema-to-grammar.dir/test-json-schema-to-grammar.cpp.i | |
| .PHONY : test-json-schema-to-grammar.cpp.i | |
| test-json-schema-to-grammar.s: test-json-schema-to-grammar.cpp.s | |
| .PHONY : test-json-schema-to-grammar.s | |
| # target to generate assembly for a file | |
| test-json-schema-to-grammar.cpp.s: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-json-schema-to-grammar.dir/build.make tests/CMakeFiles/test-json-schema-to-grammar.dir/test-json-schema-to-grammar.cpp.s | |
| .PHONY : test-json-schema-to-grammar.cpp.s | |
| test-llama-grammar.o: test-llama-grammar.cpp.o | |
| .PHONY : test-llama-grammar.o | |
| # target to build an object file | |
| test-llama-grammar.cpp.o: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-llama-grammar.dir/build.make tests/CMakeFiles/test-llama-grammar.dir/test-llama-grammar.cpp.o | |
| .PHONY : test-llama-grammar.cpp.o | |
| test-llama-grammar.i: test-llama-grammar.cpp.i | |
| .PHONY : test-llama-grammar.i | |
| # target to preprocess a source file | |
| test-llama-grammar.cpp.i: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-llama-grammar.dir/build.make tests/CMakeFiles/test-llama-grammar.dir/test-llama-grammar.cpp.i | |
| .PHONY : test-llama-grammar.cpp.i | |
| test-llama-grammar.s: test-llama-grammar.cpp.s | |
| .PHONY : test-llama-grammar.s | |
| # target to generate assembly for a file | |
| test-llama-grammar.cpp.s: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-llama-grammar.dir/build.make tests/CMakeFiles/test-llama-grammar.dir/test-llama-grammar.cpp.s | |
| .PHONY : test-llama-grammar.cpp.s | |
| test-log.o: test-log.cpp.o | |
| .PHONY : test-log.o | |
| # target to build an object file | |
| test-log.cpp.o: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-log.dir/build.make tests/CMakeFiles/test-log.dir/test-log.cpp.o | |
| .PHONY : test-log.cpp.o | |
| test-log.i: test-log.cpp.i | |
| .PHONY : test-log.i | |
| # target to preprocess a source file | |
| test-log.cpp.i: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-log.dir/build.make tests/CMakeFiles/test-log.dir/test-log.cpp.i | |
| .PHONY : test-log.cpp.i | |
| test-log.s: test-log.cpp.s | |
| .PHONY : test-log.s | |
| # target to generate assembly for a file | |
| test-log.cpp.s: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-log.dir/build.make tests/CMakeFiles/test-log.dir/test-log.cpp.s | |
| .PHONY : test-log.cpp.s | |
| test-model-load-cancel.o: test-model-load-cancel.cpp.o | |
| .PHONY : test-model-load-cancel.o | |
| # target to build an object file | |
| test-model-load-cancel.cpp.o: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-model-load-cancel.dir/build.make tests/CMakeFiles/test-model-load-cancel.dir/test-model-load-cancel.cpp.o | |
| .PHONY : test-model-load-cancel.cpp.o | |
| test-model-load-cancel.i: test-model-load-cancel.cpp.i | |
| .PHONY : test-model-load-cancel.i | |
| # target to preprocess a source file | |
| test-model-load-cancel.cpp.i: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-model-load-cancel.dir/build.make tests/CMakeFiles/test-model-load-cancel.dir/test-model-load-cancel.cpp.i | |
| .PHONY : test-model-load-cancel.cpp.i | |
| test-model-load-cancel.s: test-model-load-cancel.cpp.s | |
| .PHONY : test-model-load-cancel.s | |
| # target to generate assembly for a file | |
| test-model-load-cancel.cpp.s: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-model-load-cancel.dir/build.make tests/CMakeFiles/test-model-load-cancel.dir/test-model-load-cancel.cpp.s | |
| .PHONY : test-model-load-cancel.cpp.s | |
| test-mtmd-c-api.o: test-mtmd-c-api.c.o | |
| .PHONY : test-mtmd-c-api.o | |
| # target to build an object file | |
| test-mtmd-c-api.c.o: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-mtmd-c-api.dir/build.make tests/CMakeFiles/test-mtmd-c-api.dir/test-mtmd-c-api.c.o | |
| .PHONY : test-mtmd-c-api.c.o | |
| test-mtmd-c-api.i: test-mtmd-c-api.c.i | |
| .PHONY : test-mtmd-c-api.i | |
| # target to preprocess a source file | |
| test-mtmd-c-api.c.i: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-mtmd-c-api.dir/build.make tests/CMakeFiles/test-mtmd-c-api.dir/test-mtmd-c-api.c.i | |
| .PHONY : test-mtmd-c-api.c.i | |
| test-mtmd-c-api.s: test-mtmd-c-api.c.s | |
| .PHONY : test-mtmd-c-api.s | |
| # target to generate assembly for a file | |
| test-mtmd-c-api.c.s: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-mtmd-c-api.dir/build.make tests/CMakeFiles/test-mtmd-c-api.dir/test-mtmd-c-api.c.s | |
| .PHONY : test-mtmd-c-api.c.s | |
| test-quantize-fns.o: test-quantize-fns.cpp.o | |
| .PHONY : test-quantize-fns.o | |
| # target to build an object file | |
| test-quantize-fns.cpp.o: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-quantize-fns.dir/build.make tests/CMakeFiles/test-quantize-fns.dir/test-quantize-fns.cpp.o | |
| .PHONY : test-quantize-fns.cpp.o | |
| test-quantize-fns.i: test-quantize-fns.cpp.i | |
| .PHONY : test-quantize-fns.i | |
| # target to preprocess a source file | |
| test-quantize-fns.cpp.i: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-quantize-fns.dir/build.make tests/CMakeFiles/test-quantize-fns.dir/test-quantize-fns.cpp.i | |
| .PHONY : test-quantize-fns.cpp.i | |
| test-quantize-fns.s: test-quantize-fns.cpp.s | |
| .PHONY : test-quantize-fns.s | |
| # target to generate assembly for a file | |
| test-quantize-fns.cpp.s: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-quantize-fns.dir/build.make tests/CMakeFiles/test-quantize-fns.dir/test-quantize-fns.cpp.s | |
| .PHONY : test-quantize-fns.cpp.s | |
| test-quantize-perf.o: test-quantize-perf.cpp.o | |
| .PHONY : test-quantize-perf.o | |
| # target to build an object file | |
| test-quantize-perf.cpp.o: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-quantize-perf.dir/build.make tests/CMakeFiles/test-quantize-perf.dir/test-quantize-perf.cpp.o | |
| .PHONY : test-quantize-perf.cpp.o | |
| test-quantize-perf.i: test-quantize-perf.cpp.i | |
| .PHONY : test-quantize-perf.i | |
| # target to preprocess a source file | |
| test-quantize-perf.cpp.i: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-quantize-perf.dir/build.make tests/CMakeFiles/test-quantize-perf.dir/test-quantize-perf.cpp.i | |
| .PHONY : test-quantize-perf.cpp.i | |
| test-quantize-perf.s: test-quantize-perf.cpp.s | |
| .PHONY : test-quantize-perf.s | |
| # target to generate assembly for a file | |
| test-quantize-perf.cpp.s: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-quantize-perf.dir/build.make tests/CMakeFiles/test-quantize-perf.dir/test-quantize-perf.cpp.s | |
| .PHONY : test-quantize-perf.cpp.s | |
| test-quantize-stats.o: test-quantize-stats.cpp.o | |
| .PHONY : test-quantize-stats.o | |
| # target to build an object file | |
| test-quantize-stats.cpp.o: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-quantize-stats.dir/build.make tests/CMakeFiles/test-quantize-stats.dir/test-quantize-stats.cpp.o | |
| .PHONY : test-quantize-stats.cpp.o | |
| test-quantize-stats.i: test-quantize-stats.cpp.i | |
| .PHONY : test-quantize-stats.i | |
| # target to preprocess a source file | |
| test-quantize-stats.cpp.i: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-quantize-stats.dir/build.make tests/CMakeFiles/test-quantize-stats.dir/test-quantize-stats.cpp.i | |
| .PHONY : test-quantize-stats.cpp.i | |
| test-quantize-stats.s: test-quantize-stats.cpp.s | |
| .PHONY : test-quantize-stats.s | |
| # target to generate assembly for a file | |
| test-quantize-stats.cpp.s: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-quantize-stats.dir/build.make tests/CMakeFiles/test-quantize-stats.dir/test-quantize-stats.cpp.s | |
| .PHONY : test-quantize-stats.cpp.s | |
| test-regex-partial.o: test-regex-partial.cpp.o | |
| .PHONY : test-regex-partial.o | |
| # target to build an object file | |
| test-regex-partial.cpp.o: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-regex-partial.dir/build.make tests/CMakeFiles/test-regex-partial.dir/test-regex-partial.cpp.o | |
| .PHONY : test-regex-partial.cpp.o | |
| test-regex-partial.i: test-regex-partial.cpp.i | |
| .PHONY : test-regex-partial.i | |
| # target to preprocess a source file | |
| test-regex-partial.cpp.i: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-regex-partial.dir/build.make tests/CMakeFiles/test-regex-partial.dir/test-regex-partial.cpp.i | |
| .PHONY : test-regex-partial.cpp.i | |
| test-regex-partial.s: test-regex-partial.cpp.s | |
| .PHONY : test-regex-partial.s | |
| # target to generate assembly for a file | |
| test-regex-partial.cpp.s: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-regex-partial.dir/build.make tests/CMakeFiles/test-regex-partial.dir/test-regex-partial.cpp.s | |
| .PHONY : test-regex-partial.cpp.s | |
| test-rope.o: test-rope.cpp.o | |
| .PHONY : test-rope.o | |
| # target to build an object file | |
| test-rope.cpp.o: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-rope.dir/build.make tests/CMakeFiles/test-rope.dir/test-rope.cpp.o | |
| .PHONY : test-rope.cpp.o | |
| test-rope.i: test-rope.cpp.i | |
| .PHONY : test-rope.i | |
| # target to preprocess a source file | |
| test-rope.cpp.i: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-rope.dir/build.make tests/CMakeFiles/test-rope.dir/test-rope.cpp.i | |
| .PHONY : test-rope.cpp.i | |
| test-rope.s: test-rope.cpp.s | |
| .PHONY : test-rope.s | |
| # target to generate assembly for a file | |
| test-rope.cpp.s: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-rope.dir/build.make tests/CMakeFiles/test-rope.dir/test-rope.cpp.s | |
| .PHONY : test-rope.cpp.s | |
| test-sampling.o: test-sampling.cpp.o | |
| .PHONY : test-sampling.o | |
| # target to build an object file | |
| test-sampling.cpp.o: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-sampling.dir/build.make tests/CMakeFiles/test-sampling.dir/test-sampling.cpp.o | |
| .PHONY : test-sampling.cpp.o | |
| test-sampling.i: test-sampling.cpp.i | |
| .PHONY : test-sampling.i | |
| # target to preprocess a source file | |
| test-sampling.cpp.i: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-sampling.dir/build.make tests/CMakeFiles/test-sampling.dir/test-sampling.cpp.i | |
| .PHONY : test-sampling.cpp.i | |
| test-sampling.s: test-sampling.cpp.s | |
| .PHONY : test-sampling.s | |
| # target to generate assembly for a file | |
| test-sampling.cpp.s: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-sampling.dir/build.make tests/CMakeFiles/test-sampling.dir/test-sampling.cpp.s | |
| .PHONY : test-sampling.cpp.s | |
| test-thread-safety.o: test-thread-safety.cpp.o | |
| .PHONY : test-thread-safety.o | |
| # target to build an object file | |
| test-thread-safety.cpp.o: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-thread-safety.dir/build.make tests/CMakeFiles/test-thread-safety.dir/test-thread-safety.cpp.o | |
| .PHONY : test-thread-safety.cpp.o | |
| test-thread-safety.i: test-thread-safety.cpp.i | |
| .PHONY : test-thread-safety.i | |
| # target to preprocess a source file | |
| test-thread-safety.cpp.i: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-thread-safety.dir/build.make tests/CMakeFiles/test-thread-safety.dir/test-thread-safety.cpp.i | |
| .PHONY : test-thread-safety.cpp.i | |
| test-thread-safety.s: test-thread-safety.cpp.s | |
| .PHONY : test-thread-safety.s | |
| # target to generate assembly for a file | |
| test-thread-safety.cpp.s: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-thread-safety.dir/build.make tests/CMakeFiles/test-thread-safety.dir/test-thread-safety.cpp.s | |
| .PHONY : test-thread-safety.cpp.s | |
| test-tokenizer-0.o: test-tokenizer-0.cpp.o | |
| .PHONY : test-tokenizer-0.o | |
| # target to build an object file | |
| test-tokenizer-0.cpp.o: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-tokenizer-0.dir/build.make tests/CMakeFiles/test-tokenizer-0.dir/test-tokenizer-0.cpp.o | |
| .PHONY : test-tokenizer-0.cpp.o | |
| test-tokenizer-0.i: test-tokenizer-0.cpp.i | |
| .PHONY : test-tokenizer-0.i | |
| # target to preprocess a source file | |
| test-tokenizer-0.cpp.i: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-tokenizer-0.dir/build.make tests/CMakeFiles/test-tokenizer-0.dir/test-tokenizer-0.cpp.i | |
| .PHONY : test-tokenizer-0.cpp.i | |
| test-tokenizer-0.s: test-tokenizer-0.cpp.s | |
| .PHONY : test-tokenizer-0.s | |
| # target to generate assembly for a file | |
| test-tokenizer-0.cpp.s: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-tokenizer-0.dir/build.make tests/CMakeFiles/test-tokenizer-0.dir/test-tokenizer-0.cpp.s | |
| .PHONY : test-tokenizer-0.cpp.s | |
| test-tokenizer-1-bpe.o: test-tokenizer-1-bpe.cpp.o | |
| .PHONY : test-tokenizer-1-bpe.o | |
| # target to build an object file | |
| test-tokenizer-1-bpe.cpp.o: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-tokenizer-1-bpe.dir/build.make tests/CMakeFiles/test-tokenizer-1-bpe.dir/test-tokenizer-1-bpe.cpp.o | |
| .PHONY : test-tokenizer-1-bpe.cpp.o | |
| test-tokenizer-1-bpe.i: test-tokenizer-1-bpe.cpp.i | |
| .PHONY : test-tokenizer-1-bpe.i | |
| # target to preprocess a source file | |
| test-tokenizer-1-bpe.cpp.i: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-tokenizer-1-bpe.dir/build.make tests/CMakeFiles/test-tokenizer-1-bpe.dir/test-tokenizer-1-bpe.cpp.i | |
| .PHONY : test-tokenizer-1-bpe.cpp.i | |
| test-tokenizer-1-bpe.s: test-tokenizer-1-bpe.cpp.s | |
| .PHONY : test-tokenizer-1-bpe.s | |
| # target to generate assembly for a file | |
| test-tokenizer-1-bpe.cpp.s: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-tokenizer-1-bpe.dir/build.make tests/CMakeFiles/test-tokenizer-1-bpe.dir/test-tokenizer-1-bpe.cpp.s | |
| .PHONY : test-tokenizer-1-bpe.cpp.s | |
| test-tokenizer-1-spm.o: test-tokenizer-1-spm.cpp.o | |
| .PHONY : test-tokenizer-1-spm.o | |
| # target to build an object file | |
| test-tokenizer-1-spm.cpp.o: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-tokenizer-1-spm.dir/build.make tests/CMakeFiles/test-tokenizer-1-spm.dir/test-tokenizer-1-spm.cpp.o | |
| .PHONY : test-tokenizer-1-spm.cpp.o | |
| test-tokenizer-1-spm.i: test-tokenizer-1-spm.cpp.i | |
| .PHONY : test-tokenizer-1-spm.i | |
| # target to preprocess a source file | |
| test-tokenizer-1-spm.cpp.i: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-tokenizer-1-spm.dir/build.make tests/CMakeFiles/test-tokenizer-1-spm.dir/test-tokenizer-1-spm.cpp.i | |
| .PHONY : test-tokenizer-1-spm.cpp.i | |
| test-tokenizer-1-spm.s: test-tokenizer-1-spm.cpp.s | |
| .PHONY : test-tokenizer-1-spm.s | |
| # target to generate assembly for a file | |
| test-tokenizer-1-spm.cpp.s: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-tokenizer-1-spm.dir/build.make tests/CMakeFiles/test-tokenizer-1-spm.dir/test-tokenizer-1-spm.cpp.s | |
| .PHONY : test-tokenizer-1-spm.cpp.s | |
| # Help Target | |
| help: | |
| @echo "The following are some of the valid targets for this Makefile:" | |
| @echo "... all (the default if no target is provided)" | |
| @echo "... clean" | |
| @echo "... depend" | |
| @echo "... edit_cache" | |
| @echo "... install" | |
| @echo "... install/local" | |
| @echo "... install/strip" | |
| @echo "... list_install_components" | |
| @echo "... rebuild_cache" | |
| @echo "... test" | |
| @echo "... test-arg-parser" | |
| @echo "... test-autorelease" | |
| @echo "... test-backend-ops" | |
| @echo "... test-barrier" | |
| @echo "... test-c" | |
| @echo "... test-chat" | |
| @echo "... test-chat-parser" | |
| @echo "... test-chat-template" | |
| @echo "... test-gbnf-validator" | |
| @echo "... test-gguf" | |
| @echo "... test-grammar-integration" | |
| @echo "... test-grammar-parser" | |
| @echo "... test-json-partial" | |
| @echo "... test-json-schema-to-grammar" | |
| @echo "... test-llama-grammar" | |
| @echo "... test-log" | |
| @echo "... test-model-load-cancel" | |
| @echo "... test-mtmd-c-api" | |
| @echo "... test-quantize-fns" | |
| @echo "... test-quantize-perf" | |
| @echo "... test-quantize-stats" | |
| @echo "... test-regex-partial" | |
| @echo "... test-rope" | |
| @echo "... test-sampling" | |
| @echo "... test-thread-safety" | |
| @echo "... test-tokenizer-0" | |
| @echo "... test-tokenizer-1-bpe" | |
| @echo "... test-tokenizer-1-spm" | |
| @echo "... get-model.o" | |
| @echo "... get-model.i" | |
| @echo "... get-model.s" | |
| @echo "... test-arg-parser.o" | |
| @echo "... test-arg-parser.i" | |
| @echo "... test-arg-parser.s" | |
| @echo "... test-autorelease.o" | |
| @echo "... test-autorelease.i" | |
| @echo "... test-autorelease.s" | |
| @echo "... test-backend-ops.o" | |
| @echo "... test-backend-ops.i" | |
| @echo "... test-backend-ops.s" | |
| @echo "... test-barrier.o" | |
| @echo "... test-barrier.i" | |
| @echo "... test-barrier.s" | |
| @echo "... test-c.o" | |
| @echo "... test-c.i" | |
| @echo "... test-c.s" | |
| @echo "... test-chat-parser.o" | |
| @echo "... test-chat-parser.i" | |
| @echo "... test-chat-parser.s" | |
| @echo "... test-chat-template.o" | |
| @echo "... test-chat-template.i" | |
| @echo "... test-chat-template.s" | |
| @echo "... test-chat.o" | |
| @echo "... test-chat.i" | |
| @echo "... test-chat.s" | |
| @echo "... test-gbnf-validator.o" | |
| @echo "... test-gbnf-validator.i" | |
| @echo "... test-gbnf-validator.s" | |
| @echo "... test-gguf.o" | |
| @echo "... test-gguf.i" | |
| @echo "... test-gguf.s" | |
| @echo "... test-grammar-integration.o" | |
| @echo "... test-grammar-integration.i" | |
| @echo "... test-grammar-integration.s" | |
| @echo "... test-grammar-parser.o" | |
| @echo "... test-grammar-parser.i" | |
| @echo "... test-grammar-parser.s" | |
| @echo "... test-json-partial.o" | |
| @echo "... test-json-partial.i" | |
| @echo "... test-json-partial.s" | |
| @echo "... test-json-schema-to-grammar.o" | |
| @echo "... test-json-schema-to-grammar.i" | |
| @echo "... test-json-schema-to-grammar.s" | |
| @echo "... test-llama-grammar.o" | |
| @echo "... test-llama-grammar.i" | |
| @echo "... test-llama-grammar.s" | |
| @echo "... test-log.o" | |
| @echo "... test-log.i" | |
| @echo "... test-log.s" | |
| @echo "... test-model-load-cancel.o" | |
| @echo "... test-model-load-cancel.i" | |
| @echo "... test-model-load-cancel.s" | |
| @echo "... test-mtmd-c-api.o" | |
| @echo "... test-mtmd-c-api.i" | |
| @echo "... test-mtmd-c-api.s" | |
| @echo "... test-quantize-fns.o" | |
| @echo "... test-quantize-fns.i" | |
| @echo "... test-quantize-fns.s" | |
| @echo "... test-quantize-perf.o" | |
| @echo "... test-quantize-perf.i" | |
| @echo "... test-quantize-perf.s" | |
| @echo "... test-quantize-stats.o" | |
| @echo "... test-quantize-stats.i" | |
| @echo "... test-quantize-stats.s" | |
| @echo "... test-regex-partial.o" | |
| @echo "... test-regex-partial.i" | |
| @echo "... test-regex-partial.s" | |
| @echo "... test-rope.o" | |
| @echo "... test-rope.i" | |
| @echo "... test-rope.s" | |
| @echo "... test-sampling.o" | |
| @echo "... test-sampling.i" | |
| @echo "... test-sampling.s" | |
| @echo "... test-thread-safety.o" | |
| @echo "... test-thread-safety.i" | |
| @echo "... test-thread-safety.s" | |
| @echo "... test-tokenizer-0.o" | |
| @echo "... test-tokenizer-0.i" | |
| @echo "... test-tokenizer-0.s" | |
| @echo "... test-tokenizer-1-bpe.o" | |
| @echo "... test-tokenizer-1-bpe.i" | |
| @echo "... test-tokenizer-1-bpe.s" | |
| @echo "... test-tokenizer-1-spm.o" | |
| @echo "... test-tokenizer-1-spm.i" | |
| @echo "... test-tokenizer-1-spm.s" | |
| .PHONY : help | |
| #============================================================================= | |
| # Special targets to cleanup operation of make. | |
| # Special rule to run CMake to check the build system integrity. | |
| # No rule that depends on this can have commands that come from listfiles | |
| # because they might be regenerated. | |
| cmake_check_build_system: | |
| cd /content/llama.cpp/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 | |
| .PHONY : cmake_check_build_system | |