From f4a2944d2cd78f362b0989892fc418a23b3f80ff Mon Sep 17 00:00:00 2001 From: ROCKTAKEY Date: Fri, 6 Jun 2025 18:11:58 +0900 Subject: [PATCH] Fix cannonical import paths --- internal/execution/e.go | 2 +- internal/storage/header.go | 2 +- tensor.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/internal/execution/e.go b/internal/execution/e.go index 979e7c7..893ae22 100644 --- a/internal/execution/e.go +++ b/internal/execution/e.go @@ -1,4 +1,4 @@ -package execution // import "gorgonia.org/tensor/internal/execution" +package execution // import "github.com/pdevine/tensor/internal/execution" import ( "fmt" diff --git a/internal/storage/header.go b/internal/storage/header.go index a2894ba..b7e285c 100644 --- a/internal/storage/header.go +++ b/internal/storage/header.go @@ -1,4 +1,4 @@ -package storage // import "gorgonia.org/tensor/internal/storage" +package storage // import "github.com/pdevine/tensor/internal/storage" import ( "reflect" diff --git a/tensor.go b/tensor.go index 071ca67..a828ac6 100644 --- a/tensor.go +++ b/tensor.go @@ -1,6 +1,6 @@ // Package tensor is a package that provides efficient, generic n-dimensional arrays in Go. // Also in this package are functions and methods that are used commonly in arithmetic, comparison and linear algebra operations. -package tensor // import "gorgonia.org/tensor" +package tensor // import "github.com/pdevine/tensor" import ( "encoding/gob"