Major integrations and fixes: - Added BACKBEAT SDK integration for P2P operation timing - Implemented beat-aware status tracking for distributed operations - Added Docker secrets support for secure license management - Resolved KACHING license validation via HTTPS/TLS - Updated docker-compose configuration for clean stack deployment - Disabled rollback policies to prevent deployment failures - Added license credential storage (CHORUS-DEV-MULTI-001) Technical improvements: - BACKBEAT P2P operation tracking with phase management - Enhanced configuration system with file-based secrets - Improved error handling for license validation - Clean separation of KACHING and CHORUS deployment stacks 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
45 lines
906 B
Go
45 lines
906 B
Go
package faiss
|
|
|
|
/*
|
|
#include <stdlib.h>
|
|
#include <faiss/c_api/AutoTune_c.h>
|
|
*/
|
|
import "C"
|
|
import (
|
|
"unsafe"
|
|
)
|
|
|
|
type ParameterSpace struct {
|
|
ps *C.FaissParameterSpace
|
|
}
|
|
|
|
// NewParameterSpace creates a new ParameterSpace.
|
|
func NewParameterSpace() (*ParameterSpace, error) {
|
|
var ps *C.FaissParameterSpace
|
|
if c := C.faiss_ParameterSpace_new(&ps); c != 0 {
|
|
return nil, getLastError()
|
|
}
|
|
return &ParameterSpace{ps}, nil
|
|
}
|
|
|
|
// SetIndexParameter sets one of the parameters.
|
|
func (p *ParameterSpace) SetIndexParameter(idx Index, name string, val float64) error {
|
|
cname := C.CString(name)
|
|
|
|
defer func() {
|
|
C.free(unsafe.Pointer(cname))
|
|
}()
|
|
|
|
c := C.faiss_ParameterSpace_set_index_parameter(
|
|
p.ps, idx.cPtr(), cname, C.double(val))
|
|
if c != 0 {
|
|
return getLastError()
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// Delete frees the memory associated with p.
|
|
func (p *ParameterSpace) Delete() {
|
|
C.faiss_ParameterSpace_free(p.ps)
|
|
}
|