neon

PD-1抗体联合个性化新抗原疫苗疗效显著,客观缓解率高达59%

混江龙づ霸主 提交于 2020-10-26 08:32:09
     过去十年以来,免疫检查点抑制剂成为癌症治疗领域最重要的进展,给无数癌症患者带来了新的希望。2014 年,BMS 公司的 PD-1 抑制剂 Opdivo (nivolumab) 相继在日本和美国上市,开启了肿瘤免疫治疗的新时代,掀起一股 PD-1/PD-L1 研发热潮。但是,PD-1/PD-L1 整体响应率只有 20%-30%,只有一部分癌症患者受益,还有很多患者处于无药可治的境地。为了提高 PD-1/PD-L1 的响应率,科学家们将视线转向联合用药,并以此为突破口。    BioNTech 是欧洲最大生物科技独角兽公司,属于全球 mRNA 疫苗三巨头之一。 该公司开发出了一系列个性化 mRNA 候选产品、创新型 CAR-T 产品、新型免疫检查点调节剂等。BioNTech 与辉瑞研发的 mRNA 新冠疫苗已经进入 FDA 绿色通道,有望今年获批。2020 年 5 月,BioNTech 出资 6700 万美元收购美国 T 细胞疗法 Neon Therapeutics(Neon),后者是肿瘤新抗原疗法领域的领跑者之一,主要资产包括新抗原 T 细胞疗法 NEO-PTC-01 以及新抗原候选疫苗 NEO-PV-01。此前,Neon 一直在推进 NEO-PV-01 与 PD-1 抗体联用治疗实体瘤的临床试验。   近日,来自 BioNTech 公司的科学家 Lakshmi

thinkphp 6.0 phpstan配置

牧云@^-^@ 提交于 2020-08-14 17:01:05
首先是composer { "require-dev": { "symfony/var-dumper": "^4.2", "topthink/think-trace": "^1.0", "phpstan/phpstan": "^0.12.33" }, "autoload": { "psr-4": { "app\\": "app" }, "psr-0": { "": "extend/" }, "files": [ "app/common.php", "vendor/topthink/framework/src/helper.php" ] }, "scripts": { "start": "php think run", "analyze": "vendor\\bin\\phpstan analyse --memory-limit 300M -l 0 -c phpstan.neon ./app ./extend", "post-autoload-dump": [ "@php think service:discover", "@php think vendor:publish" ] } } 在require-dev增加了phpstan/phpstan,在autoload下增加了files,在scripts增加了analyze phpstan.neon # Magic behaviour

thinkphp5.1 phpstan配置

限于喜欢 提交于 2020-08-12 08:35:00
参考这篇 https://my.oschina.net/u/2266306/blog/4428395 然后改 ./phpstan.neon # Magic behaviour with __get, __set, __call and __callStatic is not exactly static analyser-friendly :) # Fortunately, You can ingore it by the following config. # # vendor/bin/phpstan analyse application --memory-limit 200M -l 0 # parameters: ignoreErrors: - '#Static call to instance method think\\[a-zA-Z0-9\]::[a-zA-Z0-9\\_]+\(\)#' - '#Result of.+method|function.+\(void\) is used#' scanDirectories: - thinkphp bootstrapFiles: - thinkphp/base.php 来源: oschina 链接: https://my.oschina.net/u/2266306/blog/4365580

首台获得TOP500榜首的ARM架构超算——富岳Fugaku

微笑、不失礼 提交于 2020-08-08 18:02:59
  文|乌镇智库   最近发布的TOP500榜单中,日本的高性能计算系统Fugaku(富岳)以415.53 PFlop/s的Linpack性能拔得头筹(使用152,064个节点),为第二名美国超算Summit的2.8倍。          此外在多项超级计算机基准测试中,Fugaku也名列前茅 :在HPCG测试中,它使用 138,240个 节点获得了 13.366 PFlop/s 的算力,而在HPL-AI测试中,它使用 126,720个节点 获得了 1.421 EFlop/s 的算力。 Fugaku采用富士通的ARM架构A64FX芯片,是第一个获得TOP500榜首的基于ARM的高性能计算系统。          Fugaku    “京”的后继机    Fugaku富岳 :富岳是日本富士山的别称,借寓富士山海拔及山脚广阔馥郁的平原,以呈现Fugaku卓越的性能和庞大的用户群体。   01    Fugaku诞生历程   作为超级计算机“京(Kei,K Computer)”的后继产品,Fugaku的诞生还要从K Computer说起。虽然日本1980年代末期的第五代计算机项目失败了,但建造最快计算机的雄心从未泯灭。   自2006年以来,日本理化学研究所(RIKEN)和富士通共同开发了K Computer,旨在2012年开始公共服务。 2011年6月,K Computer凭借8

How to check the existence of NEON on arm?

喜夏-厌秋 提交于 2020-08-01 06:20:26
问题 How to determine whether NEON engine exists on given ARM processor? Any status/flag register can be queried for such purpose? 回答1: I believe unixsmurf's answer is about as good as you'll get if using an OS with privileged kernel. For general purpose feature detection, it seems ARM has made it a requirement to get this from the OS, and so you must use an OS API to get it. On Android NDK use #include <cpu-features.h> with (android_getCpuFamily() == ANDROID_CPU_FAMILY_ARM) && (android

How to check the existence of NEON on arm?

旧城冷巷雨未停 提交于 2020-08-01 06:20:26
问题 How to determine whether NEON engine exists on given ARM processor? Any status/flag register can be queried for such purpose? 回答1: I believe unixsmurf's answer is about as good as you'll get if using an OS with privileged kernel. For general purpose feature detection, it seems ARM has made it a requirement to get this from the OS, and so you must use an OS API to get it. On Android NDK use #include <cpu-features.h> with (android_getCpuFamily() == ANDROID_CPU_FAMILY_ARM) && (android

针对南亚政府和军事组织的 BackConfig 恶意软件

百般思念 提交于 2020-07-25 12:46:52
原文: Updated BackConfig Malware Targeting Government and Military Organizations in South Asia 译者:知道创宇404实验室翻译组 摘要 Unit 42安全团队在过去4个月里观察到了Hangover组织(又名Neon, Viceroy Tiger, MONSOON)使用的BackConfig恶意软件的活动。该组织使用鱼叉式钓鱼攻击,目标包括南亚的政府和军事组织。 BackConfig定制木马具有灵活的插件架构,用于提供各种特性的组件,包括收集系统和键盘记录信息以及上传和执行额外payload的能力。 最初,感染是通过一个武器化的Microsoft Excel (XLS)文档发生的,该文档通过受感染的合法网站发布,url很可能是通过电子邮件共享的。这些文档使用Visual Basic for Applications (VBA)宏代码,如果受害者启用了这些宏代码,就会启动一个由多个组件组成的安装过程,从而导致插件加载程序payload被下载和执行。模块化的特性当然允许对单个组件进行更快的更改,而且对于攻击者来说可能更重要的是,能够阻止沙箱和动态分析系统的方式拆分恶意行为,尤其是在单独分析组件时。 我们基于WildFire的威胁预防平台可以检测到与此组织相关的活动,同时更新PAN-DB

ARM/neon memcpy optimized for *uncached* memory?

ⅰ亾dé卋堺 提交于 2020-05-25 05:29:09
问题 I'm using a Xilinx Zynq 7000 ARM-based SoC. I'm struggling with DMA buffers (Need help mapping pre-reserved **cacheable** DMA buffer on Xilinx/ARM SoC (Zynq 7000)), so one thing I pursued was faster memcpy. I've been looking at writing a faster memcpy for ARM using Neon instructions and inline asm. Whatever glibc has, it's terrible, especially if we're copying from an ucached DMA buffer. I've put together my own copy function from various sources, including: Fast ARM NEON memcpy arm Inline