1,605 research outputs found

    Teaching physical education abroad : Perspectives from host cooperating teachers, local students and Australian pre-service teachers using the social exchange theory

    Get PDF
    Research on pre-service teachers (PSTs) in international teaching practicums often focus on their experiences rather than how it ameliorates the host communities. Constructs of Social Exchange Theory were used to explore benefits and challenges experienced by four Australian PSTs, two Chinese cooperating teachers (CTs) and 169 local students. The PSTs experienced personal and professional growth, the CTs gained new pedagogical insights, and local students experienced cultural immersion with improved engagement in physical education. Despite mutual benefits, challenges emerged from teaching differences, language barrier, and personal obstacles. These underscore the necessity of investing time and resources to minimise such challenges

    Autotuning multigrid with PetaBricks

    Get PDF
    Algorithmic choice is essential in any problem domain to realizing optimal computational performance. Multigrid is a prime example: not only is it possible to make choices at the highest grid resolution, but a program can switch techniques as the problem is recursively attacked on coarser grid levels to take advantage of algorithms with different scaling behaviors. Additionally, users with different convergence criteria must experiment with parameters to yield a tuned algorithm that meets their accuracy requirements. Even after a tuned algorithm has been found, users often have to start all over when migrating from one machine to another. We present an algorithm and autotuning methodology that address these issues in a near-optimal and efficient manner. The freedom of independently tuning both the algorithm and the number of iterations at each recursion level results in an exponential search space of tuned algorithms that have different accuracies and performances. To search this space efficiently, our autotuner utilizes a novel dynamic programming method to build efficient tuned algorithms from the bottom up. The results are customized multigrid algorithms that invest targeted computational power to yield the accuracy required by the user. The techniques we describe allow the user to automatically generate tuned multigrid cycles of different shapes targeted to the user's specific combination of problem, hardware, and accuracy requirements. These cycle shapes dictate the order in which grid coarsening and grid refinement are interleaved with both iterative methods, such as Jacobi or Successive Over-Relaxation, as well as direct methods, which tend to have superior performance for small problem sizes. The need to make choices between all of these methods brings the issue of variable accuracy to the forefront. Not only must the autotuning framework compare different possible multigrid cycle shapes against each other, but it also needs the ability to compare tuned cycles against both direct and (non-multigrid) iterative methods. We address this problem by using an accuracy metric for measuring the effectiveness of tuned cycle shapes and making comparisons over all algorithmic types based on this common yardstick. In our results, we find that the flexibility to trade performance versus accuracy at all levels of recursive computation enables us to achieve excellent performance on a variety of platforms compared to algorithmically static implementations of multigrid. Our implementation uses PetaBricks, an implicitly parallel programming language where algorithmic choices are exposed in the language. The PetaBricks compiler uses these choices to analyze, autotune, and verify the PetaBricks program. These language features, most notably the autotuner, were key in enabling our implementation to be clear, correct, and fast.National Science Foundation (U.S.) (Award CCF-0832997)GigaScale Systems Research Cente

    Surgical Approaches to Create Murine Models of Human Wound Healing

    Get PDF
    Wound repair is a complex biologic process which becomes abnormal in numerous disease states. Although in vitro models have been important in identifying critical repair pathways in specific cell populations, in vivo models are necessary to obtain a more comprehensive and pertinent understanding of human wound healing. The laboratory mouse has long been the most common animal research tool and numerous transgenic strains and models have been developed to help researchers study the molecular pathways involved in wound repair and regeneration. This paper aims to highlight common surgical mouse models of cutaneous disease and to provide investigators with a better understanding of the benefits and limitations of these models for translational applications

    Language and Compiler Support for Auto-Tuning Variable-Accuracy Algorithms

    Get PDF
    Approximating ideal program outputs is a common technique for solving computationally difficult problems, for adhering to processing or timing constraints, and for performance optimization in situations where perfect precision is not necessary. To this end, programmers often use approximation algorithms, iterative methods, data resampling, and other heuristics. However, programming such variable accuracy algorithms presents difficult challenges since the optimal algorithms and parameters may change with different accuracy requirements and usage environments. This problem is further compounded when multiple variable accuracy algorithms are nested together due to the complex way that accuracy requirements can propagate across algorithms and because of the size of the set of allowable compositions. As a result, programmers often deal with this issue in an ad-hoc manner that can sometimes violate sound programming practices such as maintaining library abstractions. In this paper, we propose language extensions that expose trade-offs between time and accuracy to the compiler. The compiler performs fully automatic compile-time and installtime autotuning and analyses in order to construct optimized algorithms to achieve any given target accuracy. We present novel compiler techniques and a structured genetic tuning algorithm to search the space of candidate algorithms and accuracies in the presence of recursion and sub-calls to other variable accuracy code. These techniques benefit both the library writer, by providing an easy way to describe and search the parameter and algorithmic choice space, and the library user, by allowing high level specification of accuracy requirements which are then met automatically without the need for the user to understand any algorithm-specific parameters. Additionally, we present a new suite of benchmarks, written in our language, to examine the efficacy of our techniques. Our experimental results show that by relaxing accuracy requirements , we can easily obtain performance improvements ranging from 1.1× to orders of magnitude of speedup

    Are changes in semantic and structural information sufficient for oculomotor capture?

    Get PDF
    . The new-object hypothesis proposes that the appearance of something new (new semantic and structural information and/or spatiotemporal newness), not the accompanying low-level perceptual transients, causes an involuntary reorienting of attention (S. . We investigated whether semantic and structural changes alone are sufficient to capture the eyes as strongly as abrupt onsets do. Observers moved their eyes to a target object while another object either onset or smoothly and quickly morphed. If semantic and structural changes are sufficient to capture the eyes, morphs should capture the eyes as strongly as onsets do. Results show that morphs were not fixated first as often as onsets. These findings indicate that new semantic and structural information alone is far less effective at capturing the eyes as onsets

    Epigenetic developmental mechanisms underlying sex differences in cancer

    Get PDF
    Cancer risk is modulated by hereditary and somatic mutations, exposures, age, sex, and gender. The mechanisms by which sex and gender work alone and in combination with other cancer risk factors remain underexplored. In general, cancers that occur in both the male and female sexes occur more commonly in XY compared with XX individuals, regardless of genetic ancestry, geographic location, and age. Moreover, XY individuals are less frequently cured of their cancers, highlighting the need for a greater understanding of sex and gender effects in oncology. This will be necessary for optimal laboratory and clinical cancer investigations. To that end, we review the epigenetics of sexual differentiation and its effect on cancer hallmark pathways throughout life. Specifically, we will touch on how sex differences in metabolism, immunity, pluripotency, and tumor suppressor functions are patterned through the epigenetic effects of imprinting, sex chromosome complement, X inactivation, genes escaping X inactivation, sex hormones, and life history

    SiblingRivalry: Online Autotuning Through Local Competitions

    Get PDF
    Modern high performance libraries, such as ATLAS and FFTW, and programming languages, such as PetaBricks, have shown that autotuning computer programs can lead to significant speedups. However, autotuning can be burdensome to the deployment of a program, since the tuning process can take a long time and should be re-run whenever the program, microarchitecture, execution environment, or tool chain changes. Failure to re-autotune programs often leads to widespread use of sub-optimal algorithms. With the growth of cloud computing, where computations can run in environments with unknown load and migrate between different (possibly unknown) microarchitectures, the need for online autotuning has become increasingly important. We present SiblingRivalry, a new model for always-on online autotuning that allows parallel programs to continuously adapt and optimize themselves to their environment. In our system, requests are processed by dividing the available cores in half, and processing two identical requests in parallel on each half. Half of the cores are devoted to a known safe program configuration, while the other half are used for an experimental program configuration chosen by our self-adapting evolutionary algorithm. When the faster configuration completes, its results are returned, and the slower configuration is terminated. Over time, this constant experimentation allows programs to adapt to changing dynamic environments and often outperform the original algorithm that uses the entire system.United States. Dept. of Energy (DOE Award DE-SC0005288

    The association between distal findings and proximal colorectal neoplasia: a systematic review and meta-analysis

    Get PDF
    Objectives: Whether screening participants with distal hyperplastic polyps (HPs) detected by flexible sigmoidoscopy (FS) should be followed by subsequent colonoscopy is controversial. We evaluated the association between distal HPs and proximal neoplasia (PN)/advanced proximal neoplasia (APN) in asymptomatic, average-risk patients. Methods: We searched Ovid Medline, EMBASE, and the Cochrane Library from inception to 30 June 2016 and included all screening studies that examined the relationship between different distal findings and PN/APN. Data were independently extracted by two reviewers with disagreements resolved by a third reviewer. We pooled absolute risks and odds ratios (ORs) with a random effects meta-analysis. Seven subgroup analyses were performed according to study characteristics. Heterogeneity was characterized with theI2 statistics. Results: We analyzed 28 studies (104,961 subjects). When compared with normal distal findings, distal HP was not associated with PN (OR=1.16, 95% confidence interval (CI)=0.89–1.51,P=0.14,I2=40%) or APN (OR=1.09, 95% CI=0.87–1.36,P=0.39,I2=5%), while subjects with distal non-advanced or advanced adenoma had higher odds of PN/APN. Higher odds of PN/APN were observed for more severe distal lesions. Weaker association between distal and proximal findings was noticed in studies with higher quality, larger sample size, population-based design, and more stringent endoscopy quality-control measures. The Egger’s regression tests showed allP>0.05. Conclusions: Distal HP is not associated with PN/APN in asymptomatic screening population when compared with normal distal findings. Hence, the presence of distal HP alone detected by FS does not automatically indicate colonoscopy referral for all screening participants, as other risk factors of PN/APN should be considered

    Mitochondrial protein, TBRG4, modulates KSHV and EBV reactivation from latency

    Get PDF
    Kaposi’s sarcoma-associated herpesvirus (KSHV) and Epstein-Barr (EBV) are gammaherpesviruses associated with multiple human malignancies. KSHV is the etiological agent of Kaposi’s Sarcoma, primary effusion lymphoma (PEL) and multicentric Castleman’s disease (MCD). EBV is associated with Burkitt’s lymphoma (BL), Hodgkin’s lymphoma (HL), nasopharyngeal carcinoma (NPC) and gastric carcinoma (GC). KSHV and EBV establish life-long latency in the human host with intermittent periods of lytic reactivation. Here, we identified a cellular factor named transforming growth factor-beta regulator 4 (TBRG4) that plays a role in the gammaherpesvirus lifecycle. We find that TBRG4, a protein that is localized to the mitochondria, can regulate lytic reactivation from latency of both KSHV and EBV. Knockdown of TBRG4 in cells latently infected with KSHV or EBV induced viral lytic gene transcription and replication. TBRG4 deficiency causes mitochondrial stress and increases reactive oxygen species (ROS) production. Treatment with a ROS scavenger decreased viral reactivation from latency in TBRG4-depleted cells. These data suggest that TBRG4 serves as a cellular repressor of KSHV and EBV reactivation through the regulation of ROS production

    Microbicidal Effects of α- and θ-Defensins Against Antibiotic-Resistant \u3cem\u3eStaphylococcus aureus\u3c/em\u3e and \u3cem\u3ePseudomonas aeruginosa\u3c/em\u3e

    Get PDF
    Antibiotic-resistant bacterial pathogens threaten public health. Because many antibiotics target specific bacterial enzymes or reactions, corresponding genes may mutate under selection and lead to antibiotic resistance. Accordingly, antimicrobials that selectively target overall microbial cell integrity may offer alternative approaches to therapeutic design. Naturally occurring mammalian α- and θ-defensins are potent, non-toxic microbicides that may be useful for treating infections by antibiotic-resistant pathogens because certain defensin peptides disrupt bacterial, but not mammalian, cell membranes. To test this concept, clinical isolates of methicillin-resistant Staphylococcus aureus (MRSA), including vancomycin heteroresistant strains, and ciprofloxacin-resistant Pseudomonas aeruginosa (CipR-PA) were tested for sensitivity to α-defensins Crp-4, RMAD-4 and HNPs 1-3, and to RTD-1, macaque θ-defensin-1. In vitro, 3 μM Crp-4, RMAD-4 and RTD-1 reduced MRSA cell survival by 99%, regardless of vancomycin susceptibility. For PA clinical isolates that differ in fluoroquinolone resistance and virulence phenotype, peptide efficacy was independent of strain ciprofloxacin resistance, site of isolation or virulence factor expression. Thus, Crp-4, RMAD-4 and RTD-1 are effective in vitro antimicrobials against clinical isolates of MRSA and CipR-PA, perhaps providing templates for development of α- and θ-defensin-based microbicides against antibiotic resistant or virulent infectious agents
    corecore