You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
FROM intel/oneapi-basekit:$ONEAPI_VERSION as build
4
4
5
+
RUN wget -O- https://apt.repos.intel.com/intel-gpg-keys/GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB | gpg --dearmor | tee /usr/share/keyrings/intel-oneapi-archive-keyring.gpg > /dev/null && \
6
+
echo "deb [signed-by=/usr/share/keyrings/intel-oneapi-archive-keyring.gpg] https://apt.repos.intel.com/oneapi all main " | tee /etc/apt/sources.list.d/oneAPI.list && \
FROM intel/oneapi-basekit:$ONEAPI_VERSION as build
4
4
5
+
RUN wget -O- https://apt.repos.intel.com/intel-gpg-keys/GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB | gpg --dearmor | tee /usr/share/keyrings/intel-oneapi-archive-keyring.gpg > /dev/null && \
6
+
echo "deb [signed-by=/usr/share/keyrings/intel-oneapi-archive-keyring.gpg] https://apt.repos.intel.com/oneapi all main " | tee /etc/apt/sources.list.d/oneAPI.list && \
@@ -19,6 +27,14 @@ RUN if [ "${LLAMA_SYCL_F16}" = "ON" ]; then \
19
27
20
28
FROM intel/oneapi-basekit:$ONEAPI_VERSION as runtime
21
29
30
+
RUN wget -O- https://apt.repos.intel.com/intel-gpg-keys/GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB | gpg --dearmor | tee /usr/share/keyrings/intel-oneapi-archive-keyring.gpg > /dev/null && \
31
+
echo "deb [signed-by=/usr/share/keyrings/intel-oneapi-archive-keyring.gpg] https://apt.repos.intel.com/oneapi all main " | tee /etc/apt/sources.list.d/oneAPI.list && \
description: Used to request enhancements for llama.cpp
3
+
title: "Feature Request: "
4
+
labels: ["enhancement"]
5
+
body:
6
+
- type: markdown
7
+
attributes:
8
+
value: |
9
+
[Please post your idea first in Discussion if there is not yet a consensus for this enhancement request. This will help to keep this issue tracker focused on enhancements that the community has agreed needs to be implemented.](https://github.com/ggerganov/llama.cpp/discussions/categories/ideas)
10
+
11
+
- type: checkboxes
12
+
id: prerequisites
13
+
attributes:
14
+
label: Prerequisites
15
+
description: Please confirm the following before submitting your enhancement request.
16
+
options:
17
+
- label: I am running the latest code. Mention the version if possible as well.
18
+
required: true
19
+
- label: I carefully followed the [README.md](https://github.com/ggerganov/llama.cpp/blob/master/README.md).
20
+
required: true
21
+
- label: I searched using keywords relevant to my issue to make sure that I am creating a new issue that is not already open (or closed).
22
+
required: true
23
+
- label: I reviewed the [Discussions](https://github.com/ggerganov/llama.cpp/discussions), and have a new and useful enhancement to share.
24
+
required: true
25
+
26
+
- type: textarea
27
+
id: feature-description
28
+
attributes:
29
+
label: Feature Description
30
+
description: Please provide a detailed written description of what you were trying to do, and what you expected `llama.cpp` to do as an enhancement.
31
+
placeholder: Detailed description of the enhancement
32
+
validations:
33
+
required: true
34
+
35
+
- type: textarea
36
+
id: motivation
37
+
attributes:
38
+
label: Motivation
39
+
description: Please provide a detailed written description of reasons why this feature is necessary and how it is useful to `llama.cpp` users.
40
+
placeholder: Explanation of why this feature is needed and its benefits
41
+
validations:
42
+
required: true
43
+
44
+
- type: textarea
45
+
id: possible-implementation
46
+
attributes:
47
+
label: Possible Implementation
48
+
description: If you have an idea as to how it can be implemented, please write a detailed description. Feel free to give links to external sources or share visuals that might be helpful to understand the details better.
49
+
placeholder: Detailed description of potential implementation
Don't forget to check for any [duplicate research issue tickets](https://github.com/ggerganov/llama.cpp/issues?q=is%3Aopen+is%3Aissue+label%3A%22research+%F0%9F%94%AC%22)
10
+
11
+
- type: checkboxes
12
+
id: research-stage
13
+
attributes:
14
+
label: Research Stage
15
+
description: Track general state of this research ticket
16
+
options:
17
+
- label: Background Research (Let's try to avoid reinventing the wheel)
18
+
- label: Hypothesis Formed (How do you think this will work and it's effect?)
19
+
- label: Strategy / Implementation Forming
20
+
- label: Analysis of results
21
+
- label: Debrief / Documentation (So people in the future can learn from us)
22
+
23
+
- type: textarea
24
+
id: background
25
+
attributes:
26
+
label: Previous existing literature and research
27
+
description: Whats the current state of the art and whats the motivation for this research?
28
+
29
+
- type: textarea
30
+
id: hypothesis
31
+
attributes:
32
+
label: Hypothesis
33
+
description: How do you think this will work and it's effect?
34
+
35
+
- type: textarea
36
+
id: implementation
37
+
attributes:
38
+
label: Implementation
39
+
description: Got an approach? e.g. a PR ready to go?
40
+
41
+
- type: textarea
42
+
id: analysis
43
+
attributes:
44
+
label: Analysis
45
+
description: How does the proposed implementation behave?
46
+
47
+
- type: textarea
48
+
id: logs
49
+
attributes:
50
+
label: Relevant log output
51
+
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
0 commit comments