This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| set -euo pipefail | |
| cd "$(dirname "$0")" | |
| export CUDA_MALLOC_ASYNC_SUPPORTED=1 | |
| export GGML_CUDA_FORCE_MMQ=1 | |
| IMAGE="${IMAGE:-llama-turboquant:cuda}" | |
| HOST_PORT="${HOST_PORT:-8080}" | |
| NETWORK="${NETWORK:-runner-network}" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import React, {Component} from 'react' | |
| import PropTypes from 'prop-types' | |
| const MAX_INT = 2147483647 | |
| const MIN_INT = -2147483648 | |
| const isNaturalNumber = input => { | |
| return typeof input === 'number' && input % 1 === 0 && Number.isInteger(input) && input >= 0 && 1 / input !== -Infinity | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {"lastUpload":"2019-07-31T05:45:49.957Z","extensionVersion":"v3.4.1"} |