首页 > 最新文献

IBM Journal of Research and Development最新文献

英文 中文
Scalable, fault-tolerant job step management for high-performance systems 用于高性能系统的可伸缩、容错作业步骤管理
IF 1.3 4区 计算机科学 Q1 Computer Science Pub Date : 2019-12-10 DOI: 10.1147/JRD.2019.2958909
D. Solt;J. Hursey;A. Lauria;D. Guo;X. Guo
Scientific applications on the CORAL systems demanded a fault-tolerant, scalable job launch infrastructure for complex workflows with multiple job steps within an allocation. The distinct design of IBM's Job Step Manager (JSM) infrastructure, working in concert with Load Sharing Facility (LSF) and Cluster System Management (CSM), achieves these goals. JSM demonstrated launching over three-quarters of a million processes in under a minute while providing efficient process management interface for exascale-based services to communication libraries, such as parallel active messaging interface and message passing interface, and tools over the management network. JSM relies on the parallel task support library to provide a fault-tolerant, scalable communication medium between the JSM daemons. Application workflows using job steps harness the unique resource set abstraction concept in JSM to manage CPUs, GPUs, and memory between groups of processes, possibly in discrete job steps, sharing a node. The resource set concept gives JSM the opportunity to better organize process placement to optimize, for example, CPU-to-GPU communication. Applications that need complete control over the shaping of the resource sets and the placement, binding, and ordering of processes within them can leverage JSM's co-designed Explicit Resource File mechanism. This article explores the design decisions, implementation considerations, and performance optimizations of IBM's JSM infrastructure to support scientific discovery on the CORAL systems.
CORAL系统上的科学应用需要一个容错的、可扩展的作业启动基础设施,用于在一个分配中包含多个作业步骤的复杂工作流。IBM的作业步骤管理器(Job Step Manager, JSM)基础设施的独特设计与负载共享设施(Load Sharing Facility, LSF)和集群系统管理(Cluster System Management, CSM)协同工作,实现了这些目标。JSM演示了在不到一分钟的时间内启动超过75万个进程,同时为基于exascale的服务提供高效的进程管理接口,用于通信库,例如并行活动消息传递接口和消息传递接口,以及管理网络上的工具。JSM依赖并行任务支持库在JSM守护进程之间提供容错、可扩展的通信媒介。使用作业步骤的应用程序工作流利用JSM中独特的资源集抽象概念来管理进程组之间的cpu、gpu和内存(可能在离散的作业步骤中),共享一个节点。资源集概念使JSM有机会更好地组织进程放置以优化,例如cpu到gpu的通信。需要完全控制资源集的形成以及其中的进程的放置、绑定和排序的应用程序可以利用JSM共同设计的显式资源文件机制。本文探讨了IBM JSM基础设施的设计决策、实现注意事项和性能优化,以支持CORAL系统上的科学发现。
{"title":"Scalable, fault-tolerant job step management for high-performance systems","authors":"D. Solt;J. Hursey;A. Lauria;D. Guo;X. Guo","doi":"10.1147/JRD.2019.2958909","DOIUrl":"https://doi.org/10.1147/JRD.2019.2958909","url":null,"abstract":"Scientific applications on the CORAL systems demanded a fault-tolerant, scalable job launch infrastructure for complex workflows with multiple job steps within an allocation. The distinct design of IBM's Job Step Manager (JSM) infrastructure, working in concert with Load Sharing Facility (LSF) and Cluster System Management (CSM), achieves these goals. JSM demonstrated launching over three-quarters of a million processes in under a minute while providing efficient process management interface for exascale-based services to communication libraries, such as parallel active messaging interface and message passing interface, and tools over the management network. JSM relies on the parallel task support library to provide a fault-tolerant, scalable communication medium between the JSM daemons. Application workflows using job steps harness the unique resource set abstraction concept in JSM to manage CPUs, GPUs, and memory between groups of processes, possibly in discrete job steps, sharing a node. The resource set concept gives JSM the opportunity to better organize process placement to optimize, for example, CPU-to-GPU communication. Applications that need complete control over the shaping of the resource sets and the placement, binding, and ordering of processes within them can leverage JSM's co-designed Explicit Resource File mechanism. This article explores the design decisions, implementation considerations, and performance optimizations of IBM's JSM infrastructure to support scientific discovery on the CORAL systems.","PeriodicalId":55034,"journal":{"name":"IBM Journal of Research and Development","volume":null,"pages":null},"PeriodicalIF":1.3,"publicationDate":"2019-12-10","publicationTypes":"Journal Article","fieldsOfStudy":null,"isOpenAccess":false,"openAccessPdf":"https://sci-hub-pdf.com/10.1147/JRD.2019.2958909","citationCount":null,"resultStr":null,"platform":"Semanticscholar","paperid":"49948807","PeriodicalName":null,"FirstCategoryId":null,"ListUrlMain":null,"RegionNum":4,"RegionCategory":"计算机科学","ArticlePicture":[],"TitleCN":null,"AbstractTextCN":null,"PMCID":"","EPubDate":null,"PubModel":null,"JCR":null,"JCRName":null,"Score":null,"Total":0}
引用次数: 1
An open-source solution to performance portability for Summit and Sierra supercomputers Summit和Sierra超级计算机性能可移植性的开源解决方案
IF 1.3 4区 计算机科学 Q1 Computer Science Pub Date : 2019-12-09 DOI: 10.1147/JRD.2019.2955944
G. T. Bercea;A. Bataev;A. E. Eichenberger;C. Bertolli;J. K. O'Brien
Programming models that use a higher level of abstraction to express parallelism can target both CPUs and any attached devices, alleviating the maintainability and portability concerns facing today's heterogenous systems. This article describes the design, implementation, and delivery of a compliant OpenMP device offloading implementation for IBM-NVIDIA heterogeneous servers composing the Summit and Sierra supercomputers in the mainline open-source Clang/LLVM compiler and OpenMP runtime projects. From a performance perspective, reconciling the GPU programming model, best suited for massively parallel workloads, with the generality of the OpenMP model was a significant challenge. To achieve both high performance and full portability, we map high-level programming patterns to fine-tuned code generation schemes and customized runtimes that preserve the OpenMP semantics. In the compiler, we implement a low-overhead single-program multiple-data scheme that leverages the GPU native execution model and a fallback scheme to support the generality of OpenMP. Modular design enables the implementation to be extended with new schemes for frequently occurring patterns. Our implementation relies on key optimizations: sharing data among threads, leveraging unified memory, aggressive inlining of runtime calls, memory coalescing, and runtime simplification. We show that for commonly used patterns, performance on the Summit and Sierra GPUs matches that of hand-written native CUDA code.
使用更高抽象级别来表示并行性的编程模型可以同时针对CPU和任何连接的设备,从而减轻当今异构系统面临的可维护性和可移植性问题。本文描述了在主流开源Clang/LLVM编译器和OpenMP运行时项目中,针对组成Summit和Sierra超级计算机的IBM-NVIDIA异构服务器的兼容OpenMP设备卸载实现的设计、实现和交付。从性能的角度来看,协调最适合大规模并行工作负载的GPU编程模型与OpenMP模型的通用性是一个重大挑战。为了实现高性能和完全可移植性,我们将高级编程模式映射到经过微调的代码生成方案和自定义的运行时,以保留OpenMP语义。在编译器中,我们实现了一个低开销的单程序多数据方案,该方案利用GPU本机执行模型和回退方案来支持OpenMP的通用性。模块化设计使实现能够扩展到针对频繁出现的模式的新方案。我们的实现依赖于关键的优化:线程之间共享数据、利用统一内存、运行时调用的主动内联、内存合并和运行时简化。我们表明,对于常用的模式,Summit和Sierra GPU的性能与手工编写的本地CUDA代码的性能相匹配。
{"title":"An open-source solution to performance portability for Summit and Sierra supercomputers","authors":"G. T. Bercea;A. Bataev;A. E. Eichenberger;C. Bertolli;J. K. O'Brien","doi":"10.1147/JRD.2019.2955944","DOIUrl":"https://doi.org/10.1147/JRD.2019.2955944","url":null,"abstract":"Programming models that use a higher level of abstraction to express parallelism can target both CPUs and any attached devices, alleviating the maintainability and portability concerns facing today's heterogenous systems. This article describes the design, implementation, and delivery of a compliant OpenMP device offloading implementation for IBM-NVIDIA heterogeneous servers composing the Summit and Sierra supercomputers in the mainline open-source Clang/LLVM compiler and OpenMP runtime projects. From a performance perspective, reconciling the GPU programming model, best suited for massively parallel workloads, with the generality of the OpenMP model was a significant challenge. To achieve both high performance and full portability, we map high-level programming patterns to fine-tuned code generation schemes and customized runtimes that preserve the OpenMP semantics. In the compiler, we implement a low-overhead single-program multiple-data scheme that leverages the GPU native execution model and a fallback scheme to support the generality of OpenMP. Modular design enables the implementation to be extended with new schemes for frequently occurring patterns. Our implementation relies on key optimizations: sharing data among threads, leveraging unified memory, aggressive inlining of runtime calls, memory coalescing, and runtime simplification. We show that for commonly used patterns, performance on the Summit and Sierra GPUs matches that of hand-written native CUDA code.","PeriodicalId":55034,"journal":{"name":"IBM Journal of Research and Development","volume":null,"pages":null},"PeriodicalIF":1.3,"publicationDate":"2019-12-09","publicationTypes":"Journal Article","fieldsOfStudy":null,"isOpenAccess":false,"openAccessPdf":"https://sci-hub-pdf.com/10.1147/JRD.2019.2955944","citationCount":null,"resultStr":null,"platform":"Semanticscholar","paperid":"49948699","PeriodicalName":null,"FirstCategoryId":null,"ListUrlMain":null,"RegionNum":4,"RegionCategory":"计算机科学","ArticlePicture":[],"TitleCN":null,"AbstractTextCN":null,"PMCID":"","EPubDate":null,"PubModel":null,"JCR":null,"JCRName":null,"Score":null,"Total":0}
引用次数: 2
Umpire: Application-focused management and coordination of complex hierarchical memory Umpire:以应用程序为中心的复杂分层内存的管理和协调
IF 1.3 4区 计算机科学 Q1 Computer Science Pub Date : 2019-11-20 DOI: 10.1147/JRD.2019.2954403
D. A. Beckingsale;M. J. McFadden;J. P. S. Dahm;R. Pankajakshan;R. D. Hornung
Advanced architectures like Sierra provide a wide range of memory resources that must often be carefully controlled by the user. These resources have varying capacities, access timing rules, and visibility to different compute resources. Applications must intelligently allocate data in these spaces, and depending on the total amount of memory required, applications may also be forced to move data between different parts of the memory hierarchy. Finally, applications using multiple packages must coordinate effectively to ensure that each package can use the memory resources it needs. To address these challenges, we present Umpire, an application-oriented library for managing memory resources. Specifically, Umpire provides support for querying memory resources, provisioning and allocating memory, and memory introspection. It allows computer scientists and computational physicists to efficiently program the memory hierarchies of current and future high-performance computing architectures, without tying their application to specific hardware or software. In this article, we describe the design and implementation of Umpire and present case studies from the integration of Umpire into applications that are currently running on Sierra.
像Sierra这样的高级体系结构提供了广泛的内存资源,这些资源通常必须由用户仔细控制。这些资源具有不同的容量、访问定时规则以及对不同计算资源的可见性。应用程序必须在这些空间中智能地分配数据,并且根据所需的内存总量,应用程序还可能被迫在内存层次结构的不同部分之间移动数据。最后,使用多个包的应用程序必须有效地协调,以确保每个包都能使用所需的内存资源。为了解决这些挑战,我们提出了Umpire,一个用于管理内存资源的面向应用程序的库。具体来说,Umpire提供了对查询内存资源、提供和分配内存以及内存内省的支持。它使计算机科学家和计算物理学家能够有效地对当前和未来高性能计算架构的内存层次结构进行编程,而无需将其应用程序与特定的硬件或软件绑定。在本文中,我们描述了Umpire的设计和实现,并介绍了将Umpire集成到目前在Sierra上运行的应用程序中的案例研究。
{"title":"Umpire: Application-focused management and coordination of complex hierarchical memory","authors":"D. A. Beckingsale;M. J. McFadden;J. P. S. Dahm;R. Pankajakshan;R. D. Hornung","doi":"10.1147/JRD.2019.2954403","DOIUrl":"https://doi.org/10.1147/JRD.2019.2954403","url":null,"abstract":"Advanced architectures like Sierra provide a wide range of memory resources that must often be carefully controlled by the user. These resources have varying capacities, access timing rules, and visibility to different compute resources. Applications must intelligently allocate data in these spaces, and depending on the total amount of memory required, applications may also be forced to move data between different parts of the memory hierarchy. Finally, applications using multiple packages must coordinate effectively to ensure that each package can use the memory resources it needs. To address these challenges, we present Umpire, an application-oriented library for managing memory resources. Specifically, Umpire provides support for querying memory resources, provisioning and allocating memory, and memory introspection. It allows computer scientists and computational physicists to efficiently program the memory hierarchies of current and future high-performance computing architectures, without tying their application to specific hardware or software. In this article, we describe the design and implementation of Umpire and present case studies from the integration of Umpire into applications that are currently running on Sierra.","PeriodicalId":55034,"journal":{"name":"IBM Journal of Research and Development","volume":null,"pages":null},"PeriodicalIF":1.3,"publicationDate":"2019-11-20","publicationTypes":"Journal Article","fieldsOfStudy":null,"isOpenAccess":false,"openAccessPdf":"https://sci-hub-pdf.com/10.1147/JRD.2019.2954403","citationCount":null,"resultStr":null,"platform":"Semanticscholar","paperid":"49948702","PeriodicalName":null,"FirstCategoryId":null,"ListUrlMain":null,"RegionNum":4,"RegionCategory":"计算机科学","ArticlePicture":[],"TitleCN":null,"AbstractTextCN":null,"PMCID":"","EPubDate":null,"PubModel":null,"JCR":null,"JCRName":null,"Score":null,"Total":0}
引用次数: 12
Disaster management in the digital age 数字时代的灾害管理
IF 1.3 4区 计算机科学 Q1 Computer Science Pub Date : 2019-11-20 DOI: 10.1147/JRD.2019.2954412
J. W. Talley
The United States is one of the most natural disaster-prone countries in the world. Since 1980, there have been 246 weather and climate disasters exceeding $1.6 trillion in remediation. Within the last decade, the frequency of disaster events and their costs are on the rise. Complicating the impact of natural disasters is the population shift to cities and coastal areas, which concentrate their effects. The need for governments and communities to prepare for, respond to, and recover from disasters is greater than ever before. Disaster management is a big data problem that requires a public private partnership solution. Technology is the connection that can link end-to-end capabilities across multiple organizations for disaster management in the digital age. But how can technologies like cloud, artificial intelligence (AI), and predictive analytics be leveraged across all aspects of the disaster management life cycle? This article briefly addresses these questions and more. Two case studies and technology spotlights are used to reinforce discussion around traditional and new approaches to the management of natural disasters.
美国是世界上最容易发生自然灾害的国家之一。自1980年以来,共发生246起天气和气候灾害,修复费用超过1.6万亿美元。在过去的十年里,灾害事件的频率及其造成的损失都在上升。使自然灾害的影响复杂化的是人口向城市和沿海地区的转移,这些地区集中了自然灾害的影响。政府和社区比以往任何时候都更需要为灾害做好准备、作出反应并从中恢复过来。灾害管理是一个大数据问题,需要公私合作解决方案。技术是连接多个组织的端到端功能,以便在数字时代进行灾难管理的纽带。但是,如何在灾难管理生命周期的各个方面利用云、人工智能(AI)和预测分析等技术呢?本文简要地讨论了这些问题以及更多问题。两个案例研究和技术聚光灯被用来加强对自然灾害管理的传统方法和新方法的讨论。
{"title":"Disaster management in the digital age","authors":"J. W. Talley","doi":"10.1147/JRD.2019.2954412","DOIUrl":"https://doi.org/10.1147/JRD.2019.2954412","url":null,"abstract":"The United States is one of the most natural disaster-prone countries in the world. Since 1980, there have been 246 weather and climate disasters exceeding $1.6 trillion in remediation. Within the last decade, the frequency of disaster events and their costs are on the rise. Complicating the impact of natural disasters is the population shift to cities and coastal areas, which concentrate their effects. The need for governments and communities to prepare for, respond to, and recover from disasters is greater than ever before. Disaster management is a big data problem that requires a public private partnership solution. Technology is the connection that can link end-to-end capabilities across multiple organizations for disaster management in the digital age. But how can technologies like cloud, artificial intelligence (AI), and predictive analytics be leveraged across all aspects of the disaster management life cycle? This article briefly addresses these questions and more. Two case studies and technology spotlights are used to reinforce discussion around traditional and new approaches to the management of natural disasters.","PeriodicalId":55034,"journal":{"name":"IBM Journal of Research and Development","volume":null,"pages":null},"PeriodicalIF":1.3,"publicationDate":"2019-11-20","publicationTypes":"Journal Article","fieldsOfStudy":null,"isOpenAccess":false,"openAccessPdf":"https://sci-hub-pdf.com/10.1147/JRD.2019.2954412","citationCount":null,"resultStr":null,"platform":"Semanticscholar","paperid":"49986744","PeriodicalName":null,"FirstCategoryId":null,"ListUrlMain":null,"RegionNum":4,"RegionCategory":"计算机科学","ArticlePicture":[],"TitleCN":null,"AbstractTextCN":null,"PMCID":"","EPubDate":null,"PubModel":null,"JCR":null,"JCRName":null,"Score":null,"Total":0}
引用次数: 5
Emergencies do not stop at night: Advanced analysis of displacement based on satellite-derived nighttime light observations 紧急情况不会在夜间停止:基于卫星夜间灯光观测的位移高级分析
IF 1.3 4区 计算机科学 Q1 Computer Science Pub Date : 2019-11-19 DOI: 10.1147/JRD.2019.2954404
M. Enenkel;R. M. Shrestha;E. Stokes;M. Román;Z. Wang;M. T. M. Espinosa;I. Hajzmanova;J. Ginnetti;P. Vinck
Around 68.5 million people are currently forcibly displaced. The implementation and monitoring of international agreements, which are linked to the 2030 agenda (e.g., the Sendai Framework), require a standard set of metrics for internal displacement. Since nationally owned, validated, and credible data are difficult to obtain, new approaches are needed. This article aims to support the monitoring of displacement via satellite-derived observations of nighttime lights (NTL) from NASA's Black Marble product suite along with an short message service (SMS)-based emergency survey after Cyclone Idai had made landfall in Beira, Mozambique, in March 2019. Under certain conditions, the spatial extent of power outages can serve as a proxy for disaster impacts and a potential driver for displacement. Hence, information about anomalies in NTL has the potential to support humanitarian decision-making via estimations of people affected or the coordination of rapid response teams. Despite initial issues related to cloud cover, we find that around 90% of Beira's power grid had been affected. In collaboration with the Internal Displacement Monitoring Center, we use these findings to establish a framework that links NTL observations with existing humanitarian decision-making workflows to complement ground-based survey data and other satellite-derived information, such as flood or damage maps.
目前约有6850万人被迫流离失所。与2030年议程(如《仙台框架》)相关的国际协议的执行和监测需要一套标准的国内流离失所衡量标准。由于很难获得国家拥有、经过验证和可信的数据,因此需要新的方法。本文旨在支持在2019年3月飓风“伊代”登陆莫桑比克贝拉后,通过美国国家航空航天局“黑色大理石”产品套件的卫星夜间灯光观测(NTL)以及基于短信服务(SMS)的紧急调查来监测位移。在某些条件下,停电的空间范围可以作为灾害影响的指标和流离失所的潜在驱动因素。因此,有关NTL异常情况的信息有可能通过估计受影响人员或协调快速反应小组来支持人道主义决策。尽管最初的问题与云层有关,但我们发现贝拉约90%的电网受到了影响。我们与国内流离失所监测中心合作,利用这些发现建立了一个框架,将NTL的观测结果与现有的人道主义决策工作流程联系起来,以补充地面调查数据和其他卫星衍生信息,如洪水或破坏图。
{"title":"Emergencies do not stop at night: Advanced analysis of displacement based on satellite-derived nighttime light observations","authors":"M. Enenkel;R. M. Shrestha;E. Stokes;M. Román;Z. Wang;M. T. M. Espinosa;I. Hajzmanova;J. Ginnetti;P. Vinck","doi":"10.1147/JRD.2019.2954404","DOIUrl":"https://doi.org/10.1147/JRD.2019.2954404","url":null,"abstract":"Around 68.5 million people are currently forcibly displaced. The implementation and monitoring of international agreements, which are linked to the 2030 agenda (e.g., the Sendai Framework), require a standard set of metrics for internal displacement. Since nationally owned, validated, and credible data are difficult to obtain, new approaches are needed. This article aims to support the monitoring of displacement via satellite-derived observations of nighttime lights (NTL) from NASA's Black Marble product suite along with an short message service (SMS)-based emergency survey after Cyclone Idai had made landfall in Beira, Mozambique, in March 2019. Under certain conditions, the spatial extent of power outages can serve as a proxy for disaster impacts and a potential driver for displacement. Hence, information about anomalies in NTL has the potential to support humanitarian decision-making via estimations of people affected or the coordination of rapid response teams. Despite initial issues related to cloud cover, we find that around 90% of Beira's power grid had been affected. In collaboration with the Internal Displacement Monitoring Center, we use these findings to establish a framework that links NTL observations with existing humanitarian decision-making workflows to complement ground-based survey data and other satellite-derived information, such as flood or damage maps.","PeriodicalId":55034,"journal":{"name":"IBM Journal of Research and Development","volume":null,"pages":null},"PeriodicalIF":1.3,"publicationDate":"2019-11-19","publicationTypes":"Journal Article","fieldsOfStudy":null,"isOpenAccess":false,"openAccessPdf":"https://sci-hub-pdf.com/10.1147/JRD.2019.2954404","citationCount":null,"resultStr":null,"platform":"Semanticscholar","paperid":"49953418","PeriodicalName":null,"FirstCategoryId":null,"ListUrlMain":null,"RegionNum":4,"RegionCategory":"计算机科学","ArticlePicture":[],"TitleCN":null,"AbstractTextCN":null,"PMCID":"","EPubDate":null,"PubModel":null,"JCR":null,"JCRName":null,"Score":null,"Total":0}
引用次数: 6
Preface: Hardware for AI 前言:人工智能硬件
IF 1.3 4区 计算机科学 Q1 Computer Science Pub Date : 2019-11-12 DOI: 10.1147/JRD.2019.2945553
{"title":"Preface: Hardware for AI","authors":"","doi":"10.1147/JRD.2019.2945553","DOIUrl":"10.1147/JRD.2019.2945553","url":null,"abstract":"","PeriodicalId":55034,"journal":{"name":"IBM Journal of Research and Development","volume":null,"pages":null},"PeriodicalIF":1.3,"publicationDate":"2019-11-12","publicationTypes":"Journal Article","fieldsOfStudy":null,"isOpenAccess":false,"openAccessPdf":"https://sci-hub-pdf.com/10.1147/JRD.2019.2945553","citationCount":null,"resultStr":null,"platform":"Semanticscholar","paperid":"41516348","PeriodicalName":null,"FirstCategoryId":null,"ListUrlMain":null,"RegionNum":4,"RegionCategory":"计算机科学","ArticlePicture":[],"TitleCN":null,"AbstractTextCN":null,"PMCID":"","EPubDate":null,"PubModel":null,"JCR":null,"JCRName":null,"Score":null,"Total":0}
引用次数: 0
Preface: AI Ethics 前言:AI Ethics
IF 1.3 4区 计算机科学 Q1 Computer Science Pub Date : 2019-11-12 DOI: 10.1147/JRD.2019.2944775
{"title":"Preface: AI Ethics","authors":"","doi":"10.1147/JRD.2019.2944775","DOIUrl":"10.1147/JRD.2019.2944775","url":null,"abstract":"","PeriodicalId":55034,"journal":{"name":"IBM Journal of Research and Development","volume":null,"pages":null},"PeriodicalIF":1.3,"publicationDate":"2019-11-12","publicationTypes":"Journal Article","fieldsOfStudy":null,"isOpenAccess":false,"openAccessPdf":"https://sci-hub-pdf.com/10.1147/JRD.2019.2944775","citationCount":null,"resultStr":null,"platform":"Semanticscholar","paperid":"48612109","PeriodicalName":null,"FirstCategoryId":null,"ListUrlMain":null,"RegionNum":4,"RegionCategory":"计算机科学","ArticlePicture":[],"TitleCN":null,"AbstractTextCN":null,"PMCID":"","EPubDate":null,"PubModel":null,"JCR":null,"JCRName":null,"Score":null,"Total":0}
引用次数: 1
Cover 封面
IF 1.3 4区 计算机科学 Q1 Computer Science Pub Date : 2019-11-11 DOI: 10.1147/JRD.2019.2948185
{"title":"Cover","authors":"","doi":"10.1147/JRD.2019.2948185","DOIUrl":"https://doi.org/10.1147/JRD.2019.2948185","url":null,"abstract":"","PeriodicalId":55034,"journal":{"name":"IBM Journal of Research and Development","volume":null,"pages":null},"PeriodicalIF":1.3,"publicationDate":"2019-11-11","publicationTypes":"Journal Article","fieldsOfStudy":null,"isOpenAccess":false,"openAccessPdf":"https://ieeexplore.ieee.org/iel7/5288520/8894910/08895604.pdf","citationCount":null,"resultStr":null,"platform":"Semanticscholar","paperid":"49993121","PeriodicalName":null,"FirstCategoryId":null,"ListUrlMain":null,"RegionNum":4,"RegionCategory":"计算机科学","ArticlePicture":[],"TitleCN":null,"AbstractTextCN":null,"PMCID":"OA","EPubDate":null,"PubModel":null,"JCR":null,"JCRName":null,"Score":null,"Total":0}
引用次数: 0
Cover 封面
IF 1.3 4区 计算机科学 Q1 Computer Science Pub Date : 2019-11-11 DOI: 10.1147/JRD.2019.2948187
{"title":"Cover","authors":"","doi":"10.1147/JRD.2019.2948187","DOIUrl":"https://doi.org/10.1147/JRD.2019.2948187","url":null,"abstract":"","PeriodicalId":55034,"journal":{"name":"IBM Journal of Research and Development","volume":null,"pages":null},"PeriodicalIF":1.3,"publicationDate":"2019-11-11","publicationTypes":"Journal Article","fieldsOfStudy":null,"isOpenAccess":false,"openAccessPdf":"https://ieeexplore.ieee.org/iel7/5288520/8894910/08894911.pdf","citationCount":null,"resultStr":null,"platform":"Semanticscholar","paperid":"49993117","PeriodicalName":null,"FirstCategoryId":null,"ListUrlMain":null,"RegionNum":4,"RegionCategory":"计算机科学","ArticlePicture":[],"TitleCN":null,"AbstractTextCN":null,"PMCID":"OA","EPubDate":null,"PubModel":null,"JCR":null,"JCRName":null,"Score":null,"Total":0}
引用次数: 0
Culture and cognition: Understanding public perceptions of risk and (in)action 文化和认知:了解公众对风险和(在)行动的看法
IF 1.3 4区 计算机科学 Q1 Computer Science Pub Date : 2019-11-08 DOI: 10.1147/JRD.2019.2952330
T. Allen;E. Wells;K. Klima
Much is known about the effects of risk on behavior and communication, yet little research has considered how these risks influence modes of cultural and cognitive processing dynamics that underlie public perceptions, communications, and social (in)action. This article presents a psychological model of risk communications that demonstrates how cognitive structure, cultural schema, and environment awareness could be combined to improve risk communication. We illustrate the explanatory value of the model's usefulness on two qualitative case studies: one on decision-makers facing extreme heat, and another on homeowners facing flood events. Consistent with the model predictions, we find that cognitive structure, cultural schema, and environment awareness dynamics are not only necessary determinants to strengthen risk communications, but also important for understanding perceptions of risk and people's (in)action to engage in mitigation and adoption efforts. This suggests that decision-makers hoping to reduce disaster risk or improve disaster resilience may wish to consider how these three dynamics exist and interact.
我们对风险对行为和交流的影响了解甚多,但很少有研究考虑这些风险如何影响构成公众感知、交流和社会(在)行动基础的文化和认知加工动态模式。本文提出了一个风险沟通的心理模型,该模型展示了认知结构、文化图式和环境意识如何结合起来改善风险沟通。我们在两个定性案例研究中说明了模型有用性的解释价值:一个是面对极端高温的决策者,另一个是面对洪水事件的房主。与模型预测一致,我们发现认知结构、文化图式和环境意识动态不仅是加强风险沟通的必要决定因素,而且对于理解风险感知和人们参与缓解和采用努力的行动也很重要。这表明,希望减少灾害风险或提高灾害恢复能力的决策者可能希望考虑这三种动态是如何存在和相互作用的。
{"title":"Culture and cognition: Understanding public perceptions of risk and (in)action","authors":"T. Allen;E. Wells;K. Klima","doi":"10.1147/JRD.2019.2952330","DOIUrl":"https://doi.org/10.1147/JRD.2019.2952330","url":null,"abstract":"Much is known about the effects of risk on behavior and communication, yet little research has considered how these risks influence modes of cultural and cognitive processing dynamics that underlie public perceptions, communications, and social (in)action. This article presents a psychological model of risk communications that demonstrates how cognitive structure, cultural schema, and environment awareness could be combined to improve risk communication. We illustrate the explanatory value of the model's usefulness on two qualitative case studies: one on decision-makers facing extreme heat, and another on homeowners facing flood events. Consistent with the model predictions, we find that cognitive structure, cultural schema, and environment awareness dynamics are not only necessary determinants to strengthen risk communications, but also important for understanding perceptions of risk and people's (in)action to engage in mitigation and adoption efforts. This suggests that decision-makers hoping to reduce disaster risk or improve disaster resilience may wish to consider how these three dynamics exist and interact.","PeriodicalId":55034,"journal":{"name":"IBM Journal of Research and Development","volume":null,"pages":null},"PeriodicalIF":1.3,"publicationDate":"2019-11-08","publicationTypes":"Journal Article","fieldsOfStudy":null,"isOpenAccess":false,"openAccessPdf":"https://sci-hub-pdf.com/10.1147/JRD.2019.2952330","citationCount":null,"resultStr":null,"platform":"Semanticscholar","paperid":"49986749","PeriodicalName":null,"FirstCategoryId":null,"ListUrlMain":null,"RegionNum":4,"RegionCategory":"计算机科学","ArticlePicture":[],"TitleCN":null,"AbstractTextCN":null,"PMCID":"","EPubDate":null,"PubModel":null,"JCR":null,"JCRName":null,"Score":null,"Total":0}
引用次数: 2
期刊
IBM Journal of Research and Development
全部 Acc. Chem. Res. ACS Applied Bio Materials ACS Appl. Electron. Mater. ACS Appl. Energy Mater. ACS Appl. Mater. Interfaces ACS Appl. Nano Mater. ACS Appl. Polym. Mater. ACS BIOMATER-SCI ENG ACS Catal. ACS Cent. Sci. ACS Chem. Biol. ACS Chemical Health & Safety ACS Chem. Neurosci. ACS Comb. Sci. ACS Earth Space Chem. ACS Energy Lett. ACS Infect. Dis. ACS Macro Lett. ACS Mater. Lett. ACS Med. Chem. Lett. ACS Nano ACS Omega ACS Photonics ACS Sens. ACS Sustainable Chem. Eng. ACS Synth. Biol. Anal. Chem. BIOCHEMISTRY-US Bioconjugate Chem. BIOMACROMOLECULES Chem. Res. Toxicol. Chem. Rev. Chem. Mater. CRYST GROWTH DES ENERG FUEL Environ. Sci. Technol. Environ. Sci. Technol. Lett. Eur. J. Inorg. Chem. IND ENG CHEM RES Inorg. Chem. J. Agric. Food. Chem. J. Chem. Eng. Data J. Chem. Educ. J. Chem. Inf. Model. J. Chem. Theory Comput. J. Med. Chem. J. Nat. Prod. J PROTEOME RES J. Am. Chem. Soc. LANGMUIR MACROMOLECULES Mol. Pharmaceutics Nano Lett. Org. Lett. ORG PROCESS RES DEV ORGANOMETALLICS J. Org. Chem. J. Phys. Chem. J. Phys. Chem. A J. Phys. Chem. B J. Phys. Chem. C J. Phys. Chem. Lett. Analyst Anal. Methods Biomater. Sci. Catal. Sci. Technol. Chem. Commun. Chem. Soc. Rev. CHEM EDUC RES PRACT CRYSTENGCOMM Dalton Trans. Energy Environ. Sci. ENVIRON SCI-NANO ENVIRON SCI-PROC IMP ENVIRON SCI-WAT RES Faraday Discuss. Food Funct. Green Chem. Inorg. Chem. Front. Integr. Biol. J. Anal. At. Spectrom. J. Mater. Chem. A J. Mater. Chem. B J. Mater. Chem. C Lab Chip Mater. Chem. Front. Mater. Horiz. MEDCHEMCOMM Metallomics Mol. Biosyst. Mol. Syst. Des. Eng. Nanoscale Nanoscale Horiz. Nat. Prod. Rep. New J. Chem. Org. Biomol. Chem. Org. Chem. Front. PHOTOCH PHOTOBIO SCI PCCP Polym. Chem.
×
引用
GB/T 7714-2015
复制
MLA
复制
APA
复制
导出至
BibTeX EndNote RefMan NoteFirst NoteExpress
×
0
微信
客服QQ
Book学术公众号 扫码关注我们
反馈
×
意见反馈
请填写您的意见或建议
请填写您的手机或邮箱
×
提示
您的信息不完整,为了账户安全,请先补充。
现在去补充
×
提示
您因"违规操作"
具体请查看互助需知
我知道了
×
提示
现在去查看 取消
×
提示
确定
Book学术官方微信
Book学术文献互助
Book学术文献互助群
群 号:481959085
Book学术
文献互助 智能选刊 最新文献 互助须知 联系我们:info@booksci.cn
Book学术提供免费学术资源搜索服务,方便国内外学者检索中英文文献。致力于提供最便捷和优质的服务体验。
Copyright © 2023 Book学术 All rights reserved.
ghs 京公网安备 11010802042870号 京ICP备2023020795号-1