Skip to content

Commit

Permalink
Update cuml (#48)
Browse files Browse the repository at this point in the history
* chore: Update Dockerfile and add dependencies in /testdata

* chore: Update Dockerfile to remove unused dependencies

* fix go bindings
  • Loading branch information
getumen authored Aug 1, 2024
1 parent c3f9d68 commit 7ab5629
Show file tree
Hide file tree
Showing 14 changed files with 14 additions and 32 deletions.
15 changes: 0 additions & 15 deletions .vscode/launch.json

This file was deleted.

3 changes: 0 additions & 3 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -121,10 +121,7 @@
"[python]": {
"editor.defaultFormatter": "ms-python.black-formatter"
},
"python.formatting.provider": "none",
"rust-analyzer.linkedProjects": [
"./rust/Cargo.toml",
"./rust/Cargo.toml",
"./rust/Cargo.toml"
],
"C_Cpp.errorSquiggles": "disabled"
Expand Down
2 changes: 1 addition & 1 deletion go/agglomerative_clustering.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package cuml4go
import (
"errors"

"github.com/getumen/cuml/go/rawcuml4go"
"github.com/getumen/cuml-bindings/go/rawcuml4go"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion go/agglomerative_clustering_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package cuml4go_test
import (
"testing"

cuml4go "github.com/getumen/cuml/go"
cuml4go "github.com/getumen/cuml-bindings/go"
"github.com/stretchr/testify/require"
)

Expand Down
2 changes: 1 addition & 1 deletion go/dbscan.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package cuml4go
import (
"errors"

"github.com/getumen/cuml/go/rawcuml4go"
"github.com/getumen/cuml-bindings/go/rawcuml4go"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion go/dbscan_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package cuml4go_test
import (
"testing"

cuml4go "github.com/getumen/cuml/go"
cuml4go "github.com/getumen/cuml-bindings/go"
"github.com/stretchr/testify/require"
)

Expand Down
2 changes: 1 addition & 1 deletion go/fil.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package cuml4go
import (
"errors"

"github.com/getumen/cuml/go/rawcuml4go"
"github.com/getumen/cuml-bindings/go/rawcuml4go"
"go.uber.org/multierr"
)

Expand Down
2 changes: 1 addition & 1 deletion go/fil_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (

"github.com/stretchr/testify/require"

cuml4go "github.com/getumen/cuml/go"
cuml4go "github.com/getumen/cuml-bindings/go"
)

func TestFIL(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion go/kmeans.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package cuml4go
import (
"errors"

"github.com/getumen/cuml/go/rawcuml4go"
"github.com/getumen/cuml-bindings/go/rawcuml4go"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion go/kmeans_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (

"github.com/stretchr/testify/require"

cuml4go "github.com/getumen/cuml/go"
cuml4go "github.com/getumen/cuml-bindings/go"
)

func TestKmeans(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion go/linear_regression.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package cuml4go

import (
"github.com/getumen/cuml/go/rawcuml4go"
"github.com/getumen/cuml-bindings/go/rawcuml4go"
)

type GlmSolverAlgo int
Expand Down
2 changes: 1 addition & 1 deletion go/linear_regression_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package cuml4go_test
import (
"testing"

cuml4go "github.com/getumen/cuml/go"
cuml4go "github.com/getumen/cuml-bindings/go"
"github.com/stretchr/testify/require"
)

Expand Down
4 changes: 2 additions & 2 deletions go/rawcuml4go/fil_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package rawcuml4go_test
import (
"testing"

cuml4go "github.com/getumen/cuml/go"
"github.com/getumen/cuml/go/rawcuml4go"
cuml4go "github.com/getumen/cuml-bindings/go"
"github.com/getumen/cuml-bindings/go/rawcuml4go"
"github.com/stretchr/testify/require"
)

Expand Down
4 changes: 2 additions & 2 deletions go/rawcuml4go/linear_regression_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package rawcuml4go_test
import (
"testing"

cuml4go "github.com/getumen/cuml/go"
"github.com/getumen/cuml/go/rawcuml4go"
cuml4go "github.com/getumen/cuml-bindings/go"
"github.com/getumen/cuml-bindings/go/rawcuml4go"
"github.com/stretchr/testify/require"
)

Expand Down

0 comments on commit 7ab5629

Please sign in to comment.