Andrey Kolkov

Results 36 issues of Andrey Kolkov

I recreated this package as Angular CLI standard library project with demo app and simple tests. I can make pull request or we can simple continue developing this project in...

Hi! Please provide some basic example how to work with this library properly. How to create basic Kernel and use it into computation with GPU. Thanks!

``` GOROOT=C:/Go GOPATH=D:/Go C:/Go\bin\go.exe build -i -o C:\Users\Andy\AppData\Local\Temp\___Unnamed.exe github.com/chewxy/cu/cmd/cudatest # github.com/chewxy/cu gcc: error: FilesNVIDIA: No such file or directory gcc: error: GPU: No such file or directory gcc: error: Computing:...

Please update code for paginator correct working... ``` loadLessons(courseId:number, filter:string, sortDirection:string, pageIndex:number, pageSize:number) { this.loadingSubject.next(true); this.coursesService.findLessons(courseId, filter, sortDirection, pageIndex, pageSize).pipe( catchError(() => of([])), finalize(() => this.loadingSubject.next(false)) ) .subscribe((lessonList: LessionList) =>...

Hi! I can't see `Upsert` method in the model query. Is it possible to add it to this type of query? Thanks! https://github.com/go-ozzo/ozzo-dbx/issues/5

Hi! How to use builder with this query? `SELECT * FROM `dislocation` WHERE `status`='init' ORDER BY `operation_time` ASC LIMIT 1 FOR UPDATE SKIP LOCKED` https://mysqlserverteam.com/mysql-8-0-1-using-skip-locked-and-nowait-to-handle-hot-rows/

Hi! Please add to query builder new construction to check is row exist or not like described below: https://stackoverflow.com/questions/1676551/best-way-to-test-if-a-row-exists-in-a-mysql-table Thanks!

Hi! I can't find any solutions for build UPDATE JOIN queries with query builder. https://www.mysqltutorial.org/mysql-update-join/

How to use this function (`UUID_TO_BIN`) to store in query biulder? Is it possible? https://stackoverflow.com/a/45186851/4174678