clip.h 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. /**
  2. * llama.cpp - commit 8962422b1c6f9b8b15f5aeaea42600bcc2d44177 - do not edit this file
  3. *
  4. * MIT License
  5. *
  6. * Copyright (c) 2023-2024 The ggml authors
  7. *
  8. * Permission is hereby granted, free of charge, to any person obtaining a copy
  9. * of this software and associated documentation files (the "Software"), to deal
  10. * in the Software without restriction, including without limitation the rights
  11. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  12. * copies of the Software, and to permit persons to whom the Software is
  13. * furnished to do so, subject to the following conditions:
  14. *
  15. * The above copyright notice and this permission notice shall be included in all
  16. * copies or substantial portions of the Software.
  17. *
  18. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  19. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  20. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  21. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  22. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  23. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  24. * SOFTWARE.
  25. */
  26. #ifndef CLIP_H
  27. #define CLIP_H
  28. #include <stddef.h>
  29. #include <stdint.h>
  30. #ifdef LLAMA_SHARED
  31. # if defined(_WIN32) && !defined(__MINGW32__)
  32. # ifdef LLAMA_BUILD
  33. # define CLIP_API __declspec(dllexport)
  34. # else
  35. # define CLIP_API __declspec(dllimport)
  36. # endif
  37. # else
  38. # define CLIP_API __attribute__ ((visibility ("default")))
  39. # endif
  40. #else
  41. # define CLIP_API
  42. #endif
  43. #ifdef __cplusplus
  44. extern "C" {
  45. #endif
  46. struct clip_ctx;
  47. struct clip_image_size {
  48. int width;
  49. int height;
  50. };
  51. struct clip_image_u8_batch {
  52. struct clip_image_u8 * data;
  53. size_t size;
  54. };
  55. struct clip_image_f32_batch {
  56. struct clip_image_f32 * data;
  57. size_t size;
  58. };
  59. CLIP_API struct clip_ctx * clip_model_load (const char * fname, int verbosity);
  60. CLIP_API struct clip_ctx * clip_model_load_cpu(const char * fname, int verbosity);
  61. CLIP_API void clip_free(struct clip_ctx * ctx);
  62. CLIP_API size_t clip_embd_nbytes(const struct clip_ctx * ctx);
  63. CLIP_API int32_t clip_image_size (const struct clip_ctx * ctx);
  64. CLIP_API int32_t clip_patch_size (const struct clip_ctx * ctx);
  65. CLIP_API int32_t clip_hidden_size(const struct clip_ctx * ctx);
  66. // TODO: should be enum, not string
  67. CLIP_API const char * clip_patch_merge_type(const struct clip_ctx * ctx);
  68. CLIP_API const int32_t * clip_image_grid(const struct clip_ctx * ctx);
  69. CLIP_API int clip_n_patches (const struct clip_ctx * ctx);
  70. CLIP_API int clip_n_mmproj_embd(const struct clip_ctx * ctx);
  71. CLIP_API int clip_uhd_num_image_embeds_col(struct clip_ctx * ctx_clip);
  72. CLIP_API void clip_add_load_image_size(struct clip_ctx * ctx_clip, struct clip_image_size * load_image_size);
  73. CLIP_API struct clip_image_size * clip_image_size_init();
  74. CLIP_API struct clip_image_u8 * clip_image_u8_init ();
  75. CLIP_API struct clip_image_f32 * clip_image_f32_init();
  76. CLIP_API void clip_image_u8_free (struct clip_image_u8 * img);
  77. CLIP_API void clip_image_f32_free(struct clip_image_f32 * img);
  78. CLIP_API void clip_image_u8_batch_free (struct clip_image_u8_batch * batch);
  79. CLIP_API void clip_image_f32_batch_free(struct clip_image_f32_batch * batch);
  80. CLIP_API bool clip_image_load_from_file(const char * fname, struct clip_image_u8 * img);
  81. /** interpret bytes as an image file with length bytes_length, and use the result to populate img */
  82. CLIP_API bool clip_image_load_from_bytes(const unsigned char * bytes, size_t bytes_length, struct clip_image_u8 * img);
  83. /** preprocess img and store the result in res_imgs, pad_to_square may be overridden to false depending on model configuration */
  84. CLIP_API bool clip_image_preprocess(struct clip_ctx * ctx, const struct clip_image_u8 * img, struct clip_image_f32_batch * res_imgs );
  85. CLIP_API struct ggml_tensor * clip_get_newline_tensor(const struct clip_ctx * ctx);
  86. CLIP_API bool clip_image_encode (struct clip_ctx * ctx, int n_threads, struct clip_image_f32 * img, float * vec);
  87. CLIP_API bool clip_image_batch_encode(struct clip_ctx * ctx, int n_threads, const struct clip_image_f32_batch * imgs, float * vec);
  88. CLIP_API bool clip_model_quantize(const char * fname_inp, const char * fname_out, int itype);
  89. CLIP_API int clip_is_minicpmv(const struct clip_ctx * ctx);
  90. #ifdef __cplusplus
  91. }
  92. #endif
  93. #endif // CLIP_H