test (1.0.0-1) unstable; urgency=medium
* Initial release (Closes: #nnnn) <nnnn is the bug number of your ITP>
-- miyagaw61 <miyagaw61@unknown> Fri, 08 Jun 2018 15:30:58 +0900
変更後の changelog:
test (1.0.0-2+xenial) UNRELEASED; urgency=medium
* Add world to hello.sh
-- miyagaw61 <miyagaw61@gmail.com> Fri, 08 Jun 2018 15:54:26 +0900
test (1.0.0-1) unstable; urgency=medium
* Initial release (Closes: #nnnn) <nnnn is the bug number of your ITP>
-- miyagaw61 <miyagaw61@unknown> Fri, 08 Jun 2018 15:30:58 +0900
test (1.0.0-2+xenial) UNRELEASED; urgency=medium
* Add world to hello.sh
-- miyagaw61 <miyagaw61@miyagaw61-ubuntu.in.labs.cybozu.co.jp> Fri, 14 Sep 2018 13:24:52 +0900
test (1.0.0-1) unstable; urgency=medium
* Initial release (Closes: #nnnn) <nnnn is the bug number of your ITP>
-- miyagaw61 <miyagaw61@unknown> Fri, 14 Sep 2018 11:49:46 +0900
変更後の changelog:
test (1.0.0-2+xenial) xenial; urgency=medium
* Add world to hello.sh
-- miyagaw61 <miyagaw61@miyagaw61-ubuntu.in.labs.cybozu.co.jp> Fri, 14 Sep 2018 13:24:52 +0900
test (1.0.0-1) unstable; urgency=medium
* Initial release (Closes: #nnnn) <nnnn is the bug number of your ITP>
-- miyagaw61 <miyagaw61@unknown> Fri, 14 Sep 2018 11:49:46 +0900
test (1.0.0-2+xenial) xenial; urgency=medium
* Add world to hello.sh
-- miyagaw61 <miyagaw61@miyagaw61-ubuntu.in.labs.cybozu.co.jp> Fri, 14 Sep 2018 13:24:52 +0900
test (1.0.0-1) unstable; urgency=medium
* Initial release (Closes: #nnnn) <nnnn is the bug number of your ITP>
-- miyagaw61 <miyagaw61@unknown> Fri, 14 Sep 2018 11:49:46 +0900
変更後の changelog:
test (2.0.0-1+xenial) xenial; urgency=medium
* Use hi instead of hello
* Add debian directory
* Add world to hello.sh
* Update changelog for 1.0.0-2+xenial release
* Update changelog for 1.0.0-2+xenial release
* Rediff patches
-- miyagaw61 <miyagaw61@miyagaw61-ubuntu.in.labs.cybozu.co.jp> Fri, 14 Sep 2018 13:43:56 +0900
test (1.0.0-2+xenial) xenial; urgency=medium
* Add world to hello.sh
-- miyagaw61 <miyagaw61@miyagaw61-ubuntu.in.labs.cybozu.co.jp> Fri, 14 Sep 2018 13:24:52 +0900
test (1.0.0-1) unstable; urgency=medium
* Initial release (Closes: #nnnn) <nnnn is the bug number of your ITP>
-- miyagaw61 <miyagaw61@unknown> Fri, 14 Sep 2018 11:49:46 +0900
/* activation */template<typename T, typename A,
typename U = typename utils::remove_reference<T>::type>
inline U relu_fwd(T s, A alpha) {
return s > 0 ? s : (U)(s * alpha);
}
// y = y * x + p4
vfmadd213ps(vmm_src, vmm_aux0, table_val(8));
// y = y * x + p3
vfmadd213ps(vmm_src, vmm_aux0, table_val(7));
// y = y * x + p2
vfmadd213ps(vmm_src, vmm_aux0, table_val(6));
// y = y * x + p1
vfmadd213ps(vmm_src, vmm_aux0, table_val(0));
// y = y * x + p0
vfmadd213ps(vmm_src, vmm_aux0, table_val(5)); //exp(q)
最後にStep 5とStep 6の値を掛けて完了です。
// y = y * 2^n
vmulps(vmm_src, vmm_src, vmm_aux1);
/* assumption: when fetch in Li, data is already in L(i+1) */int cache_latency;
switch (cache_type_) {
case L1: cache_latency = 14; break;
case L2:
case L3:
default: cache_latency = 250; break;
}
prefetch_distance_ = div_up(cache_latency, nb_cache_lines_to_prefetch_);
Lokiはスケーラビリティと高可用性を持つログ収集システムで、KubeCon North America 2018で発表されました。代表的なログ収集システムではCNCF Graduated projectのFluentdがあります。ログの収集後に検索できるようにするまでの手順としては、ElasticsearchでIndexingしておき、他のWeb UIでで検索するというのがよくある手順です。実現するにはIndexingが必須で、さらにFluentdにおいてはFilterを定義してログの種類を教えておく必要があります。すなわちそのような構成を構築するだけで面倒な点が多いのが課題です。それらの課題を解決するのがLokiです。LokiはPrometheusにインスパイアされており、以下の特徴があります。
The way you communicate and provide quick response is fabulous. Really loved the work you guys passionately do. Keep doing and making much secure Cybozu.