| 7474 | //////////////////////////////////////////////////////////////////////////////// |
| 7475 | |
| 7476 | void ggml_set_input(struct ggml_tensor * tensor) { |
| 7477 | tensor->flags |= GGML_TENSOR_FLAG_INPUT; |
| 7478 | } |
| 7479 | |
| 7480 | void ggml_set_output(struct ggml_tensor * tensor) { |
| 7481 | tensor->flags |= GGML_TENSOR_FLAG_OUTPUT; |
no outgoing calls