本文整理匯總了Java中com.google.common.math.LongMath.mod方法的典型用法代碼示例。如果您正苦於以下問題:Java LongMath.mod方法的具體用法?Java LongMath.mod怎麽用?Java LongMath.mod使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類com.google.common.math.LongMath
的用法示例。
在下文中一共展示了LongMath.mod方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: loadPartialY
import com.google.common.math.LongMath; //導入方法依賴的package包/類
public static LongObjectMap<float[]> loadPartialY(int partition,
int numPartitions,
String prefix,
Configuration conf) throws IOException {
LongObjectMap<float[]> result = new LongObjectMap<float[]>();
AvroFileSource<MatrixRow> records = new AvroFileSource<MatrixRow>(
Namespaces.toPath(prefix),
(AvroType<MatrixRow>) ALSTypes.DENSE_ROW_MATRIX);
for (MatrixRow record : records.read(conf)) {
long id = record.getRowId();
if (LongMath.mod(id, numPartitions) == partition) {
result.put(id, record.getValues());
}
}
return result;
}
示例2: mod
import com.google.common.math.LongMath; //導入方法依賴的package包/類
@Benchmark int mod(int reps) {
int tmp = 0;
for (int i = 0; i < reps; i++) {
int j = i & ARRAY_MASK;
tmp += LongMath.mod(longs[j], positive[j]);
}
return tmp;
}
示例3: gCD
import com.google.common.math.LongMath; //導入方法依賴的package包/類
@Benchmark int gCD(int reps) {
int tmp = 0;
for (int i = 0; i < reps; i++) {
int j = i & ARRAY_MASK;
tmp += LongMath.mod(nonnegative[j], positive[j]);
}
return tmp;
}
示例4: mod
import com.google.common.math.LongMath; //導入方法依賴的package包/類
/**
* 保證結果為正數的取模
*/
public static long mod(long x, int m) {
return LongMath.mod(x, m);
}