intglobalL1CacheSupported;/**< Device supports caching globals in L1 */
intlocalL1CacheSupported;/**< Device supports caching locals in L1 */
size_tsharedMemPerMultiprocessor;/**< Shared memory available per multiprocessor in bytes */
intregsPerMultiprocessor;/**< 32-bit registers available per multiprocessor */
intmanagedMemory;/**< Device supports allocating managed memory on this system */
intisMultiGpuBoard;/**< Device is on a multi-GPU board */
intmultiGpuBoardGroupID;/**< Unique identifier for a group of devices on the same multi-GPU board */
inthostNativeAtomicSupported;/**< Link between the device and the host supports native atomic operations */
intsingleToDoublePrecisionPerfRatio;/**< Ratio of single precision performance (in floating-point operations per second) to double precision performance */
intpageableMemoryAccess;/**< Device supports coherently accessing pageable memory without calling cudaHostRegister on it */
intconcurrentManagedAccess;/**< Device can coherently access managed memory concurrently with the CPU */
This directory contains integration tests to exercise Ollama end-to-end to verify behavior
By default, these tests are disabled so `go test ./...` will exercise only unit tests. To run integration tests you must pass the integration tag. `go test -tags=integration ./...`
The integration tests have 2 modes of operating.
1. By default, they will start the server on a random port, run the tests, and then shutdown the server.
2. If `OLLAMA_TEST_EXISTING` is set to a non-empty string, the tests will run against an existing running server, which can be remote