Instructions to use kernels-community/quantization-eetq with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Kernels
How to use kernels-community/quantization-eetq with Kernels:
# !pip install kernels from kernels import get_kernel kernel = get_kernel("kernels-community/quantization-eetq") - Notebooks
- Google Colab
- Kaggle
| /* | |
| * Copyright (c) 2019-2023, NVIDIA CORPORATION. All rights reserved. | |
| * | |
| * Licensed under the Apache License, Version 2.0 (the "License"); | |
| * you may not use this file except in compliance with the License. | |
| * You may obtain a copy of the License at | |
| * | |
| * http://www.apache.org/licenses/LICENSE-2.0 | |
| * | |
| * Unless required by applicable law or agreed to in writing, software | |
| * distributed under the License is distributed on an "AS IS" BASIS, | |
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
| * See the License for the specific language governing permissions and | |
| * limitations under the License. | |
| */ | |
| namespace fastertransformer { | |
| /* **************************** debug tools ********************************* */ | |
| template<typename T> | |
| void check(T result, char const* const func, const char* const file, int const line) | |
| { | |
| if (result) { | |
| throw std::runtime_error(std::string("[FT][ERROR] CUDA runtime error: ") + ("<unknown>") + " " | |
| + file + ":" + std::to_string(line) + " \n"); | |
| } | |
| } | |
| [[noreturn]] inline void throwRuntimeError(const char* const file, int const line, std::string const& info = "") | |
| { | |
| throw std::runtime_error(std::string("[FT][ERROR] ") + info + " Assertion fail: " + file + ":" | |
| + std::to_string(line) + " \n"); | |
| } | |
| inline void myAssert(bool result, const char* const file, int const line, std::string const& info = "") | |
| { | |
| if (!result) { | |
| throwRuntimeError(file, line, info); | |
| } | |
| } | |
| /* ***************************** common utils ****************************** */ | |
| inline int getSMVersion() | |
| { | |
| int device{-1}; | |
| check_cuda_error(cudaGetDevice(&device)); | |
| int sm_major = 0; | |
| int sm_minor = 0; | |
| check_cuda_error(cudaDeviceGetAttribute(&sm_major, cudaDevAttrComputeCapabilityMajor, device)); | |
| check_cuda_error(cudaDeviceGetAttribute(&sm_minor, cudaDevAttrComputeCapabilityMinor, device)); | |
| return sm_major * 10 + sm_minor; | |
| } | |
| cudaError_t getSetDevice(int i_device, int* o_device = NULL); | |
| /* ************************** end of common utils ************************** */ | |
| } // namespace fastertransformer | |