29 research outputs found

    Do unto others or treat yourself? The effects of prosocial and self-focused behavior on psychological flourishing.

    Full text link
    When it comes to the pursuit of happiness, popular culture encourages a focus on oneself. By contrast, substantial evidence suggests that what consistently makes people happy is focusing prosocially on others. In the current study, we contrasted the mood- and well-being-boosting effects of prosocial behavior (i.e., doing acts of kindness for others or for the world) and self-oriented behavior (i.e., doing acts of kindness for oneself) in a 6-week longitudinal experiment. Across a diverse sample of participants (N = 473), we found that the 2 types of prosocial behavior led to greater increases in psychological flourishing than did self-focused and neutral behavior. In addition, we provide evidence for mechanisms explaining the relative improvements in flourishing among those prompted to do acts of kindness-namely, increases in positive emotions and decreases in negative emotions. Those assigned to engage in self-focused behavior did not report improved psychological flourishing, positive emotions, or negative emotions relative to controls. The results of this study contribute to a growing literature supporting the benefits of prosocial behavior and challenge the popular perception that focusing on oneself is an optimal strategy to boost one's mood. People striving for happiness may be tempted to treat themselves. Our results, however, suggest that they may be more successful if they opt to treat someone else instead. (PsycINFO Database Recor

    Narcissism and the strategic pursuit of short-term mating : universal links across 11 world regions of the International Sexuality Description Project-2.

    Get PDF
    Previous studies have documented links between sub-clinical narcissism and the active pursuit of short-term mating strategies (e.g., unrestricted sociosexuality, marital infidelity, mate poaching). Nearly all of these investigations have relied solely on samples from Western cultures. In the current study, responses from a cross-cultural survey of 30,470 people across 53 nations spanning 11 world regions (North America, Central/South America, Northern Europe, Western Europe, Eastern Europe, Southern Europe, Middle East, Africa, Oceania, Southeast Asia, and East Asia) were used to evaluate whether narcissism (as measured by the Narcissistic Personality Inventory; NPI) was universally associated with short-term mating. Results revealed narcissism scores (including two broad factors and seven traditional facets as measured by the NPI) were functionally equivalent across cultures, reliably associating with key sexual outcomes (e.g., more active pursuit of short-term mating, intimate partner violence, and sexual aggression) and sex-related personality traits (e.g., higher extraversion and openness to experience). Whereas some features of personality (e.g., subjective well-being) were universally associated with socially adaptive facets of Narcissism (e.g., self-sufficiency), most indicators of short-term mating (e.g., unrestricted sociosexuality and marital infidelity) were universally associated with the socially maladaptive facets of narcissism (e.g., exploitativeness). Discussion addresses limitations of these cross-culturally universal findings and presents suggestions for future research into revealing the precise psychological features of narcissism that facilitate the strategic pursuit of short-term mating

    Narcisismo y búsqueda estratégica del emparejamiento a corto plazo a través de las culturas: Enlaces omnipresentes a través de 11 regiones mundiales del Proyecto de la descripción de la sexualidad internacional 2

    Get PDF
    Previous studies have documented links between sub-clinical narcissism and the active pursuit of short-term mating strategies (e.g., unrestricted sociosexuality, marital infidelity, mate poaching). Nearly all of these investigations have relied solely on samples from Western cultures. In the current study, responses from a cross-cultural survey of 30,470 people across 53 nations spanning 11 world regions (North America, Central/South America, Northern Europe, Western Europe, Eastern Europe, Southern Europe, Middle East, Africa, Oceania, Southeast Asia, and East Asia) were used to evaluate whether narcissism (as measured by the Narcissistic Personality Inventory; NPI) was universally associated with short-term mating. Results revealed narcissism scores (including two broad factors and seven traditional facets as measured by the NPI) were functionally equivalent across cultures, reliably associating with key sexual outcomes (e.g., more active pursuit of short-term mating, intimate partner violence, and sexual aggression) and sex-related personality traits (e.g., higher extraversion and openness to experience). Whereas some features of personality (e.g., subjective well-being) were universally associated with socially adaptive facets of Narcissism (e.g., self-sufficiency), most indicators of short-term mating (e.g., unrestricted sociosexuality and marital infidelity) were universally associated with the socially maladaptive facets of narcissism (e.g., exploitativeness). Discussion addresses limitations of these cross-culturally universal findings and presents suggestions for future research into revealing the precise psychological features of narcissism that facilitate the strategic pursuit of short-term mating.Estudios previos, en primer lugar a través de las muestras de culturas occidentales, han documentado asociaciones sistemáticas del narcisismo subclínico con múltiples indicadores de estrategias del emparejamiento a corto plazo (p. ej. sociosexualidad ilimitada, infidelidad, caza de pareja). En este estudio se han usado respuestas de la encuesta transcultural de 30.470 personas de 53 naciones de 11 regiones mundiales (América del Norte, América del Sur/América Central, Europa del Norte, Europa del Oeste, Europa del Este, Europa del Sur, Oriente Próximo, África, Asia del Sur/Sudoeste de Asia, Asia del Este y Oceanía) para evaluar si el narcisismo (medido por el Inventario de Personalidad Narcisista; NPI) se asocia panuniversalmente con los indicadores del emparejamiento a corto plazo, tanto en la dirección, como en la intensidad. Los resultados sugieren que el narcisismo (incluidos muchos aspectos suyos medidos por el NPI) tiene las mismas asociaciones básicas con los rasgos de personalidad relacionados con el sexo (p. ej. extraversión alta) y con los resultados sexuales claves (p. ej. búsqueda más activa de las estrategias del emparejamiento a corto plazo) a través de las 11 mayores regiones mundiales del PDSI 2. La discusión se enfoca en las implicaciones y limitaciones del estudio actual

    Compiler and Runtime Techniques for Optimizing Deep Learning Applications

    No full text
    Thesis (Ph.D.)--University of Washington, 2022As the scaling and performance demands for deep learning systems have grown, system designers have struggled to incorporate innovations at opposite ends of the system stack: more varied and complex deep learning models and specialized hardware accelerators. New models that use data structures and dynamic control flow to address new learning problems cannot immediately benefit from previous system-level optimizations, which are defined over static dataflow graphs. Meanwhile, many novel hardware accelerators for accelerating common deep learning operations present unusual computing models and often require manual modification of applications to use, demanding expertise in both the deep learning domain and in hardware. The challenges in adding support for accelerators in existing compiler stacks slow development cycles and constrain deep learning systems’ capabilities and efficiency. Following earlier work on the Relay IR for the TVM framework, this dissertation demonstrates that system design problems in the deep learning domain can be approached by formalizing deep learning models as programs broadly (rather than assuming a more specific structure like a graph) and applying traditional compiler engineering techniques, simplifying various optimizations and transformations. In particular, this work addresses the use of runtime systems to support optimizations for dynamic deep learning models and on systematically supporting accelerators through the use of a formal software/hardware interface. Traditional deep learning model optimizations have been conceived as transformations on static dataflow graphs, but can be adapted to perform similar reasoning dynamically (and hence make no assumptions about control flow) by performing similar reasoning in a runtime system, guided by heuristics that depend on dynamically gathered information. This work explores the specific example of Dynamic Tensor Rematerialization, which is an online approach to the problem of gradient checkpointing (recomputing intermediate activations instead of storing them to reduce the memory required for training) that achieves results comparable to optimal static techniques but generalizes to arbitrarily dynamic models. In addressing the problem of supporting accelerators in deep learning compiler stacks, this work demonstrates that a formal software/hardware interface enables traditional compiler techniques like instruction selection to be adapted for accelerators. Namely, this work presents a methodology for implementing a compiler stack with extensible support for accelerators that uses term rewriting to automatically discover opportunities to apply accelerator operations and lays the foundations for extending formal verification to entire compilation stacks with support for accelerators
    corecore