Guoyu Hu

Results 9 issues of Guoyu Hu

Install commands in Makefile does not use -D to create prefix directories when they do not exist. Adding that makes install more user friendly, when user's pass in their own...

### What version of Badger are you using? fb1b009595813ae6dabd11628281568c8537f7fd ### What version of Go are you using? 1.19.5 ### Have you tried reproducing the issue with the latest release? Yes...

kind/bug

## Problem Fixes #2021. The problem is in the `block()` function in table.go. `blk.data` takes a slice of the t.Data. If there is no decryption or decompression, it will hold...

The latest codes of ScaNN fails to build due to missing headers. In `scann/scann/partitioning/kmeans_tree_partitioner.h`, the header `orthogonality_amplification_utils.h` cannot be found under the scann directory https://github.com/google-research/google-research/blob/35399d4c322226a5c16b733b982ec33d434440b0/scann/scann/partitioning/kmeans_tree_partitioner.h#L33

# Problem The current age calculation for week/month/year is based on translation to the fixed day interval: https://github.com/COOL-cohort/COOL/blob/80070ff893b3101fe8c4f53f531ffc179e6026b3/cool-core/src/main/java/com/nus/cool/core/cohort/utils/DateUtils.java#L70-L75 Needs to use the date object to generate the difference directly and...

logic-issue

## Reasons: * change in cohort storage format. global id list > string list * global id no longer unique across cublet * previous impl assumes that users with unique...

logic-issue

The [CoolModel](https://github.com/COOL-cohort/COOL/blob/main/cool-core/src/main/java/com/nus/cool/model/CoolModel.java) class is currently serve to keep various readstores in memory without loading the the actual chunk data. It looks like a caching layer, then there are a few...

enhancement
logic-issue

Currently the implementation of [DistributedController](https://github.com/COOL-cohort/COOL/blob/main/cool-queryserver/src/main/java/com/nus/cool/queryserver/handler/DistributedController.java) at L86 and L185 calls the `reload` method of CoolModel that accepts a buffer and only loads that buffer to CubeRS. Therefore, it cannot handles...

bug