w***x 发帖数: 105 | 1 mb/rb include both compiler memory barrier & cpu barriers. |
|
p***o 发帖数: 1252 | 2 这个问题讨论这么久你还没明白什么重要。
首先现在既然有C++11的标准了,当然要遵循标准。你要是觉得按标准写程序是教条,
那后面就没啥好说的了。
其次按标准来说,Foxman说的很对。你的疑惑在于不明白什么叫memory barrier。
这个东西别指望学校里能教,量化研究方法这种研究生体系结构教科书上都只花了
一页介绍,别提本科级别的汇编语言和体系结构课了。
最后,C++的std::atomic带memory barrier,这个是你需要的,至于CAS这样的atomic
操作那是另外的功能。另外java里的volatile和C++里的完全不一样,前面也讨论的很
清楚了。
happens- |
|
g****t 发帖数: 31659 | 3 他可能不理解这些东西的design motivation。
这类东西的根源,除了多线程,最容易理解的需求根源
是硬件驱动。这些往往是EE的内容。
: 这个问题讨论这么久你还没明白什么重要。
: 首先现在既然有C 11的标准了,当然要遵循标准。你要是觉得按标准写
程序是
教条,
: 那后面就没啥好说的了。
: 其次按标准来说,Foxman说的很对。你的疑惑在于不明白什么叫memory
barrier。
: 这个东西别指望学校里能教,量化研究方法这种研究生体系结构教科书上
都只花了
: 一页介绍,别提本科级别的汇编语言和体系结构课了。
: 最后,C 的std::atomic带memory barrier,这个是你需要的,至于CAS
这样的
atomic
: 操作那是另外的功能。另外java里的volatile和C 里的完全不一样,前
面也讨
论的很
: 清楚了。
: happens-
|
|
d***a 发帖数: 13752 | 4 呵呵,barrier操作是parallel computing课中最基本的内容。但外系的学生来计算机
系修课,一般不会选parallel computing, 计算机系的学生也不是每个人都学。
楼主的程序并不需要memory barrier。Foxman的问题是并没有把情况搞清楚,死板地应
用概念,过于自以为是。
atomic |
|
F****n 发帖数: 3271 | 5 cache access 和 memory barrier 从reorder 优化的角度是一个道理
为什么recorder优化可行?是因为compiler发现你程序某些部分并不互相关联
所以把顺序换换也没关系。但在并行计算的情况下compiler很难通过语义分析(对C/C+
+来说)确定关联性,所以需要额外的memory barrier,它的一个作用就是把一定的顺
序强加在使用不同cache但访问同样内存地址区的并行进程。
为什么决大多数情况下用volatile退出线程不对? 简单的说,因为有数据一致性
要求时volatile不工作,没有数据一致性要求时,你根本不需要volatile。大多数情况
下你总不可能什么都不做就直接quit吧?总要对一些数据进行操作和判断然后决定是否
quit。举个不太恰当的例子:
Connection conn; // assumed to be a db connection;
bool volatile quit;
...
while (!quit) {
conn.doSomething(); // error if conn is closed
... 阅读全帖 |
|
F****n 发帖数: 3271 | 6 你说的没错,__sync_fetch_and_xxx包括compiler barrier,文档里有提。
但C/C++里volatile没用的原因主要还是因为多数情况下,省略不省略和内存访问顺序
比,实在不重要。省略最多会漏掉一些初始值,顺序不对问题就大条了。所以gcc干脆
把compiler barrier 也加上省事。相反VC++则是把volatile变成跟Java一样fully
synchronized. |
|
b***i 发帖数: 3043 | 7 我后来又查了,cache根本就是更无关的,所有volatile退出线程是没有问题的。
就是说,既没有memory barrier问题,也没有原子操作问题。
没有memory barrier是因为设置quit的时候之前之后没有任何操作。如果你有操作需要
做可以在等待线程结束后的主线程那个join那里做。
原子的问题,是因为本来是bool,根本没有问题。
cache是因为本来硬件就是透明的,程序员不需要知道cache存在。
其他方面多线程一般不能使用volatile解决信息传递的问题。但是让线程终止可以,因
为线程都要中止了,还有啥可做的呢?放在Join那里就可以了。 |
|
g****t 发帖数: 31659 | 8 我说过了。不了解uncertainty sources的情况,用atomic.
可以假设i = 1的赋值需要500秒,想一想你需要不需要
0到1信号的上升沿完整。
这主要不是个逻辑问题。是个软件的设计问题。就是你要留多少Robustness margin,代
价多高。
你要自己玩。那怎么样都可以。如果要卖出去给人用,massive Users, 那是另一回事。
我看咱们大家可以搁置讨论,5年后再看。
: 我后来又查了,cache根本就是更无关的,所有volatile退出线程是没有问题的。
: 就是说,既没有memory barrier问题,也没有原子操作问题。
: 没有memory barrier是因为设置quit的时候之前之后没有任何操作。如果你有操
作需要
: 做可以在等待线程结束后的主线程那个join那里做。
: 原子的问题,是因为本来是bool,根本没有问题。
: cache是因为本来硬件就是透明的,程序员不需要知道cache存在。
: 其他方面多线程一般不能使用volatile解决信息传递的问题。但是让线程终止可
以,... 阅读全帖 |
|
发帖数: 1 | 9 罪魁祸首找到了:obj := *(*uintptr)(unsafe.Pointer(b + i))
// scanobject scans the object starting at b, adding pointers to gcw.
// b must point to the beginning of a heap object or an oblet.
// scanobject consults the GC bitmap for the pointer mask and the
// spans for the size of the object.
//
//go:nowritebarrier
func scanobject(b uintptr, gcw *gcWork) {
// Note that arena_used may change concurrently during
// scanobject and hence scanobject may encounter a pointer to
// a new... 阅读全帖 |
|
发帖数: 1 | 10 罪魁祸首找到了:obj := *(*uintptr)(unsafe.Pointer(b + i))
// scanobject scans the object starting at b, adding pointers to gcw.
// b must point to the beginning of a heap object or an oblet.
// scanobject consults the GC bitmap for the pointer mask and the
// spans for the size of the object.
//
//go:nowritebarrier
func scanobject(b uintptr, gcw *gcWork) {
// Note that arena_used may change concurrently during
// scanobject and hence scanobject may encounter a pointer to
// a new... 阅读全帖 |
|
s***e 发帖数: 911 | 11 现在这个问题不平庸了.
以前认为DNA具有线性弯曲弹性. 小于50nm的DNA成环需要的能量太大, 没有外部帮助的
情况下,基本不可能自发成环. 对小DNA链来说, 成环最小需要的弯曲能是:
Eb/KT=2*pi^2*50nm/L. 所以L=150 bp的DNA成换需要至少克服20 KT的energy barrier. 如果
100 bp成环需要克服大概30 KT的energy barrier.
最近西北大学的Widom的lab用T4 ligase作了成环实验. 成环概率大过理论结果up to
10,0000倍.
我们提了一个理论解释, 能很好的解释他们的结果. 就是热激发的连续几个base pair的
melting导致一些local defects. 这些local defects很稀少, 所以对长的DNA不起作用.
对短DNA的极限情况会有很大影响. 严格的理论计算结果果然如此.
Melting机制会使成环概率敏感依赖于温度.另外Melting机制也会影响到DNA的
twist rigidity. 这两个预言最近被Widom的新实验支持了.
所以我现在的看法是: 多小的DNA都能 |
|
a********k 发帖数: 2273 | 12 花了一个小时,深深的鄙视一下自己的无聊行径!!
125 蔡亮 男 1980年11月 复旦大学 生命
科学 2007年12月毕业于[美国]北卡大学 [美国]加州大学旧金山分校 博士后
Cai L, Mostov K. Polarity is destiny. Cell. 2009 Nov 13;139(4):660-2. PubMed
PMID: 19914162; PubMed Central PMCID: PMC2900917.
Cai L, Makhov AM, Schafer DA, Bear JE. Coronin 1B antagonizes cortactin and
remodels Arp2/3-containing actin branches in lamellipodia. Cell. 2008 Sep
5;134(5):828-42. PubMed PMID: 18775315; PubMed Central PMCID: PMC2570342.
Cai L, Makhov AM, Bear JE. F-actin... 阅读全帖 |
|
w******e 发帖数: 1187 | 13 1. startup is NOT something you do when running out of option.
starting a business and growing it successfully is very very very difficult
. you don't want to do it w/o enough prep, you don't want to do it alone,
and you definitely don't want to do it if you are generally not very
competent
.
2. startup is NOT something you do only if you are young and reckless.
I'm sure many ppl do startup just for the thrill, but there is a rational
reason behind many ppl who do startup: as a financially respo... 阅读全帖 |
|
|
l**********1 发帖数: 5204 | 15 En
one aspect:
To keep stability and safety of Somatic cell Reprogramming to iPS cell
pls refer
Hamada M. et al. (2012)
Reprogramming to Pluripotency Can Conceal Somatic Cell Chromosomal
Instability.
PLoS Genet. 8: e1002913.
Abstract
ignored
These findings suggest that aneuploid cells can be selected for or against
during reprogramming depending on the W-CIN gene defect and present the
novel concept that somatic cell W-CIN can be concealed in the pluripotent
state. Thus, karyotypic analysis of s... 阅读全帖 |
|
k****s 发帖数: 1209 | 16 原文在
http://www.skizit.biz/2013/07/21/ecdysone-insect-hormone-an-ind
Ecdysone Insect Hormone Switches on Disease
21 Jul 2013 | ECDYSONE
MORGELLONS:
INSECT HORMONE ECDYSONE TRIGGERS GENETIC CHANGES
TO BUILD NEW HAIR, SKIN, NAILS and CAUSE DISEASES
SkizitGesture-2013
Morgellons is a military grade entomological terror weapon being used to
torture and kill innocent civilians. The medical community has not been
informed about this disease and its complexity keeps it from being properly
identified, ... 阅读全帖 |
|
发帖数: 1 | 17 energy barrier并不是最主要的问题,因为酶催化反应本也没有确定的能级上限。一些
酶如lignin peroxidase催化的反应在energy barrier的角度看就已经难以置信。关键
是无限制水解alkane chain的反应对生物系统没有实际意义。有这种催化功能的酶如果
存在,它就会攻击各种膜层的疏水部分。造成的后果完全是破坏性的。 |
|
发帖数: 1 | 18 energy barrier并不是最主要的问题,因为酶催化反应本也没有确定的能级上限。一些
酶如lignin peroxidase催化的反应在energy barrier的角度看就已经难以置信。关键
是无限制水解alkane chain的反应对生物系统没有实际意义。有这种催化功能的酶如果
存在,它就会攻击各种膜层的疏水部分。造成的后果完全是破坏性的。 |
|
v*******e 发帖数: 11604 | 19 "Hybrid Songbirds are Deficient in Learning and Memory"
https://www.biorxiv.org/content/early/2017/11/30/227298
Abstract
Identifying the phenotypes underlying postzygotic reproductive isolation is
crucial for fully understanding the evolution and maintenance of species.
One potential postzygotic isolating barrier that has not yet been examined
is learning and memory ability in hybrids. Learning and memory are important
fitness-related traits, especially in scatter-hoarding species, where
accurat... 阅读全帖 |
|
r******s 发帖数: 2155 | 20 Below is direct quote from Deborah Frisch in her email to a public email list:
An interesting question raised by Summers' comments is "Why are there are so
few women in economics?" One hypothesis is that the main barrier to entry is
the magnitude of the mathematical ability required to be an economist. An
alternative hypothesis is that the low prevalence of women in economics is
mainly due to other barriers to entry such as sexual discrimination in hiring
and promotion, the necessity of pretend |
|
x**c 发帖数: 1435 | 21 I guess you set foot in counseling mainly because you need a job to get by in
the near future regardless...but it seems to be way too much for you to deal
the langauge and culture barrier. You know counselors do not push however
counselors do heal each other's pain. When I was a counseling student I
experienced the same, I was like a dummy so many times, group times had always
been torture. Now even I am working as a counselor struggle with langaueg and
culture barrier has never lessened...but I |
|
d******h 发帖数: 503 | 22 Barrier to entry is important, which is part of the core competence. However
, being nimble and fast is also a
barrier to entry. Think about H&M and Zara. They are in the clothes industry
, they do not have top designer,
but they are fast and affordable. They are huge success. Think about IKEA,
they do not make the best
furniture, but they are cheap, affordable, and functional. I think this is
my model.
( |
|
l*******e 发帖数: 1485 | 23 我暂时还没有找到直接跟me mh有关的公式,不过我根据这个公式:
Ei=(Ec+Ev)/2+kBxT/2 x ln(Nc/Nv) http://web.mit.edu/6.730/www/ST04/Lectures/Lecture22.pdf
计算出GaAs的Ei偏离中心0.038V, 这相对Eg=1.42来说是个很小的偏差。
我用1D poisson,采用5000um sub, 没有看到明显的Ec-Ef变化。
但是改动 "surface schottky" (应该是指schottky barrier吧),发现Ec-Ef变化很明
显,也就是说,似乎是由于gate边界条件(shcottky barrier height)引起了这个Ec-
Ef的巨大偏移。
不知道我理解对否。 |
|
l*******e 发帖数: 1485 | 24 我还不确定后面那个v1就是偏置电压Va,因为没见有默认值。
所以其实我的做法是假设通过改变phi_ms,来增加一个Va, 也就说,实际barrier
height对某种材料来说是固定的,改变后的barrier是假定为phi_ms+Vb。
:(
其实我还有一堆问题。比方,这个Ec是如何随phi_b+Va 改变的?难道只是schrodinger
-poison 方程(SPE)自己就这么数值解出来的?
断带处delta_Ec是固定的,是0.23ev, 问题是,这个断带的上下(能量)位置是如何随
phi_ms+Vb改变的,也只要SPE自己解出来的?没有其他限定条件?
断带边界处有没有电位移的限定条件?比如D1=D2?
在matlab中玩SPE,只是玩系数矩阵,那边界条件是如何带入的?
汗。。。学过两遍IC device,但都陷入到一堆公式里不可自拔,学的稀里糊涂的。 |
|
n*********r 发帖数: 18 | 25 All rights reserved!
1.1.2 device operation and efficiency
In general, device opreation includes charge injection, transport,
recominbation and emission.
(1). Electron and hole injection.
The interfacial electronic properties are dominant in carrier injection. The
current understanding of how energy barriers form at cathode and anode
interfaces is far from being complete. Work function difference at those
interfaces is not exactly the barrier because of the formation of ultra thin
dipolar laye |
|
x****x 发帖数: 87 | 26 如果absorbing barriers(或者说是边界boundary) 是一般的光滑可倒的曲线a(t),
b(t)
brownian 运动开始点在上下barriers中间。 请问如何考虑第一次通过边界的时间T的概
率密度函数呢?
或者推荐社么书给我看看,多谢啊。 |
|
x****x 发帖数: 87 | 27 不会吧
书本上的是固定的barrier,比如是常数
论文上我有看过是 exp(x)函数的边界
但是好像从来没有看过有人处理了边界barrier是一般的光滑可导函数的情况啊。 |
|
d******s 发帖数: 180 | 28 http://aimath.org/news/primegaps70m/
第一段就很有料,四月后期投稿,五月中旬便接受,对于一篇55页的paper来说速度惊
人。
Zhang's Theorem on Bounded Gaps Between Primes
by Dan Goldston
In late April 2013 Yitang Zhang of the University of New Hampshire submitted
a paper to the Annals of Mathematics proving that there are infinitely many
pairs of primes that differ by less than 70 million. The proof of this
amazing result was verified with high confidence by several experts in the
field and accepted for publication. A public slightly re... 阅读全帖 |
|
C****o 发帖数: 994 | 29 I hope the tragedy was rooted by misunderstanding and culture barrier,
rather than just a personal insult and avenge.
As is well accepted in the social sciences, 70% of the conflicts in the
world are cuased by culture barrier, no matter personal conflicts, wars or
diplomatic conflicts. So, I hope it is by misunderstanding. Earlier
communication and constructive negotiation could be conducted to prevent the
tragedy, or at least to alleviate their hatreds in person.
Also, our Indian colleagues are |
|
w****o 发帖数: 32 | 30 http://www.pe.com/local-news/topics/topics-immigration-headline
Dr. Jose Chavez arrived in Southern California with a medical degree from
his native El Salvador.
He wanted to work as a doctor but faced a daunting series of costly hurdles
to obtain a U.S. medical license. Instead of treating patients in a region
with a severe shortage of Spanish-speaking doctors, Chavez cleaned houses,
worked in a meatpacking plant and installed flooring.
“After working construction eight to ten hours, it’s impos... 阅读全帖 |
|
l****w 发帖数: 1281 | 31 我不是你的专业,但是我身边也都是美国人,我的英语很烂,但是我跟他们的关系很好
。我觉得不要把他们当成不一样的人,就跟你对待中国人一样对待他们,有什么听不懂
的俚语,问,他们也不期望一个外国人能听懂俚语,他们会纠正我的语法错误,告诉我
俚语是什么意思,还有很多连很多美国人都不知道的说法,我知道了很多。有好几个朋
友,他们有什么烦恼也和我说,什么八卦阿,我也和他们说一些自己的事情,就是朋友
对朋友那种,主要就是自己的心态,我真得看人的性格人品的,不管他是美国人还是外
国人,只要我觉得这个人不错,我就真心地对他,真心的交流,语言不是问题,慢慢的
就会好的。
熟, |
|
b*2 发帖数: 5 | 32
还是就是教育背景不同.多数来美的我们大多在国内受过良好的教育;这里的护士绝大多
数ADN,也就相当于国内大专.教育背景没我们高--这,也会影响到交流.
有同感,班上除了俺一个asia/pacific 其他一律白。由于生活经历不同,班上的同学
对藕还是挺好奇的,也挺友好。其实我倒把这个当作锻炼口语的绝好机会。多跟同学聊
,多根病人聊。久了就会发现老美的学生讨论的话题是由年龄段来决定的。有%40-50的
20岁左右的年轻人讨论的话题就是男朋友,party,化妆啦,等等;年级大的讨论的就是
孩子,老公,家庭纠纷,blah blah。 我也发现要真正talk the talk挺难,但一旦尝
试总有收获。两年下来的变化向来自己都觉得吃惊。第一天clinical去nursing home,
instructor 让根病人交谈,藕都不知该说些啥,非常诚惶诚恐。不光是我,同组的老
美没有在medical field混过的也表现得教怵头。每次进病房之前都要先想一想怎么说
,而且能不进病房就不进(instructor要求clinical前一天拿病人资料时要跟病人交谈
的,双发互相了解一下)。然后经过2年 |
|
x******a 发帖数: 14 | 33 这个问题是个剧难得课题,没有人有能力能给你个明确的回答的。
积极的在美国生活就是了。
熟, |
|
|
|
b*2 发帖数: 5 | 36 我隐隐觉得老美其实挺怕脸皮厚的人的(不是说你的这个策略不好)。他们第一次会帮
你,但一旦知道了你脸皮厚,就会疏远你。除非你跟他建立起真正的友谊,多喝啤酒,
多泡吧,实在不行一块吃个饭。上床就不必了,丢人。hehe |
|
s****e 发帖数: 1648 | 37 我明白你的意思,不过你所说的脸皮厚则是走向了另一个极端。我这里的厚脸皮是指克
服自己怕羞怕出错的心理,而不是不顾别人的感受一味蛮干总是找别人帮忙麻烦别人。
做什么事情都有个度,过于胆怯怕羞导致孤僻,过于烦扰则让人避而远之。lz的问题是
缺乏融入身边人圈子的动力和勇气,有时候主动邀请别人吃饭喝啤酒也需要有些勇气的。 |
|
k**7 发帖数: 20 | 38 刚从LA回来.
谢大家的踊跃发言.恩...其实我是个很积极外向的人.我之所以有这个感慨是因为我住
在比较保守的小地方,周围的同学/同事,要么居年轻(没结婚那种),要么结婚生子.我是
个比年轻的大点,爱玩爱室外运动,又没孩子,过DINK式的生活的人(city type,anyway).
..所以,跟周围的人没啥共同语言.
跟病人交流,那种半职业性的,没有问题地.
希望东西两岸会好很多. |
|
d*****a 发帖数: 3983 | 39 hoho...你们那里怎么那么纯洁啊,
偶这疙瘩满地都是黑人,上了一年先修课“臭美“了一年,数我最白。:)
进了program之后遇到一个ABC,一句中文都不说,还对我待理不理的,
一学期下来我还是独行客
熟, |
|
k***o 发帖数: 9 | 40 深有同感……
整个Program也是就我一个纯种亚洲人,90%白人。觉得想要切实的融入他们需要先在心
里建立起另一种文化,两种文化在身体里共存,大部分在美国生存的外国人最终都会炼
成这项“神功”吧,但是大概需要很长时间。现在的自己,之所以总会觉得不安,是因
为找不到合适的入口,在那些热烈的氛围里仿佛陌生人,自己想想原因,还是因为我们
本来文化的影响太深入骨髓了。觉得跟他们的某些不分国界的连接,比如艺术,比如做
人原则,或许可以或多或少推波助澜,找到一两个朋友之后,心灵的不安大概就会消失
了吧。美国人虽然很注重sociability,但是觉得其实,以适合自己的舒服的方式找到
自己的位置就好了:)
我们比他们不知要顶住大多少倍的压力和困难才生存下来的啊,想到这里就觉得自己也
不是那么没用了……自我安慰~~~~ |
|
k**7 发帖数: 20 | 41 回dynthia:说起black,以我极有限的经历,觉得他们,尤其受教育低些的,很不容易走近,
.白人会做表面工夫,black却纯朴些(?)(相比起来我到觉得不虚伪^^,相处却简单些).
回kakyo:我觉得我的问题很多一部份是因为一种追求的生活方式和他们不同.这些当地
白人很少出来走走看看的,大多数也就是在附近camping而已.出过国的也以欧洲为荣,对
亚洲还谈不上太大的了解和兴趣.反而是外国出生长大的白人,受教育多点的好很多,可
惜我同学里只有一英国人,虽然在美国也住了10年了,和她共同语言多一些.
另外,英国人的印度情绪很浓啊.浓浓的怀旧. |
|
p*******g 发帖数: 2976 | 42 【 以下文字转载自 Biology 讨论区 】
发信人: albertsmwk (.)(.), 信区: Biology
标 题: 第一批“青年千人计划”生物类@publication列表@
发信站: BBS 未名空间站 (Thu Aug 18 15:04:16 2011, 美东)
花了一个小时,深深的鄙视一下自己的无聊行径!!
125 蔡亮 男 1980年11月 复旦大学 生命
科学 2007年12月毕业于[美国]北卡大学 [美国]加州大学旧金山分校 博士后
Cai L, Mostov K. Polarity is destiny. Cell. 2009 Nov 13;139(4):660-2. PubMed
PMID: 19914162; PubMed Central PMCID: PMC2900917.
Cai L, Makhov AM, Schafer DA, Bear JE. Coronin 1B antagonizes cortactin and
remodels Arp2/3-containing actin branche... 阅读全帖 |
|
B*********h 发帖数: 800 | 43 ☆─────────────────────────────────────☆
scarface (人生犹如一场电影) 于 (Thu Jul 13 09:55:56 2006) 提到:
suppose the barrier is 70% (knock in put).
在barrier的边上有什么性质?
作为卖家有哪些风险?
☆─────────────────────────────────────☆
newkids (LD的爱情太难太危险了) 于 (Thu Jul 13 13:17:58 2006) 提到:
as i remember
when approaching maturity T and if the stock price p is close to the stike
price k, very small change of the price will cause a very large amount of long
/short to replicate. practically it is not possible to hedge
|
|
n**x 发帖数: 6 | 44 To hedge the barrier option with the call and put, I mean you start with
longing the call option, and whenever the barrier is touched, you short a
put with the same strike,and dissolve the replication portofolio immediately
.So you portofolio immediately goes to zero value, that what the down-and-
out call option means. |
|
q********u 发帖数: 53 | 45 In Excel
1) building trees time 0 to time T steps N+1 delta_t=T/N
2) at each nodes at time t, if S at that level satisfies Barrier, the node
value is 10*exp(-r(T-t)), otherwise, leave it blank. After this step, we
can the final nodes value at time T and all the nodes values that satisfies
the barriers. Others are blank
3) calculate pu, pd, discount back to initial nodes, only need to fill in
the blank nodes. |
|
p*****k 发帖数: 318 | 46 solarquant, if the prob of ever reaching 10 is strictly <1,
then there is nonzero prob of the first passage time being
infinity, hence the infinite average.
the nontrivial case is, as you said, when p=1/2. all points
on the line would be hit infinitely many times with prob of 1,
while the average first passage time is infinite.
one argument (which i personally feel misleading) is to consider
the well-known two-barrier version then take one of the barrier
to the infinity on the opposite side |
|
m*********g 发帖数: 646 | 47 if you are super good in modeling, surely the bar of programming can be
lower for you.
but the fact is, junior candidates are usually not that good in modeling.
Are you comfortable with VSWP ? Volatility Barrier Option ? Or just an
equity barrier option with two volatility? |
|
a*******e 发帖数: 60 | 48 sketch the value of a call option with a barrier above the strike.
Approximately what will the sensitivities(Delta and Gamma) look like when
the spot is close to the barrier? |
|
r**a 发帖数: 536 | 49 suppose the call is down-out call. The payoff can be decomposed as a vanilla
call with strike B(barrier) and (B-K) times a digital call with strike B
too. Then use the static hedge to price the barrier.
For the delta and gamma, i guess in your case, they would be close to zero.
Note I did not do the calculation here. So my answer would be wrong. |
|
x********9 发帖数: 31 | 50 You can simply hedge with a future contract with settlement price = 100.
The strategy would be:
1. Hold the future to maturity if the barrier is not hit. Then the put will
end up in the money, and the future delivers the same payoff.
2. If the barrier is hit, clear the future position. if r=0, then the
clearing does not incur any extra cost.
The value of the future contract is 100 - 50 = 50. |
|