可能是史上最强iPad?苹果官宣新iPad Pro首发M4芯片

Antutu

阅读

凌晨,苹果召开“放飞吧”特别活动,公布了包括新iPad Air、iPad Pro在内的多款产品,并公布了全新的M4芯片。

根据苹果介绍,这颗由新iPad Pro首发搭载的M4,在CPU部分拥有4颗性能核心与6颗能效核心,性能相较M2提升50%。

而GPU方面同样有着10颗核心,其整体渲染性能对比M2提高了4倍,且在功耗减半的情况下,就能提供与M2同等的性能。

同时,M4也首次为iPad系列带来了包括动态缓存、硬件加速网格着色、光线追踪等功能。

其他方面,M4芯片内置iPad迄今为止最先进的媒体处理引擎,支持AV1解码,能够以更高的能效带来高分辨率视频播放体验。

而其搭载的,苹果目前最强大的神经网络引擎,则能够每秒执行高达38万亿次运算,与A11相比,速度提升了60倍。

据苹果介绍,在M4芯片的加持下,新iPad Pro的整体性能与前代相比提升4倍,与初代相比则提升了10倍。

原创文章,作者:Noer,如若转载,请注明出处:http://www.antutu.com/doc/131694.htm

19

$(window).resize(function(){ $(".article-e").width($(".article-a").width()) }); $(document).ready(function () { // 微信二维码分享 var qrcode = new QRCode(document.getElementById("qrcode"), { width: 120, height: 120, text: this.location.href }); qrcode.makeCode(window.location.href); // 管理员一栏 $(".article-e").width($(".article-a").width()) // 新闻内页图片弹框 $(".article-b img").click(function(){ var _this = $(this); imgShow("#outerdiv", "#innerdiv", "#bigimg", _this); }); }) function getScrollTop() { var scroll_top = 0; if (document.documentElement && document.documentElement.scrollTop) { scroll_top = document.documentElement.scrollTop; } else if (document.body) { scroll_top = document.body.scrollTop; } return scroll_top; } // 图片弹框 function imgShow(outerdiv, innerdiv, bigimg, _this){ var src = _this.attr("src"); $("#bigimg").attr("src", src); // 获取当前点击图片的真实大小,与当前窗口比较 $("").attr("src", src).load(function(){ var windowW = $(window).width(); var windowH = $(window).height(); var realWidth = this.width; var realHeight = this.height; var imgWidth, imgHeight; var scale = 1; if(realHeight>windowH*scale) { imgHeight = windowH*scale; imgWidth = imgHeight/realHeight*realWidth; if(imgWidth>windowW*scale) { imgWidth = windowW*scale; imgHeight = imgWidth / realWidth * realHeight; } } else if(realWidth>windowW*scale) { imgWidth = windowW*scale; imgHeight = imgWidth/realWidth*realHeight; } else { imgWidth = realWidth; imgHeight = realHeight; } $("#bigimg").css("width",imgWidth); var w = (windowW-imgWidth)/2; var h = (windowH-imgHeight)/2; $("#innerdiv").css({"top":h, "left":w}); $(".navbar").fadeOut("fast") $(".article-e").fadeOut("fast") $("#outerdiv").fadeIn("fast"); }); //再次点击 关闭弹框 // $("#outerdiv").click(function(){ // $(this).fadeOut("fast"); // $(".navbar").fadeIn("fast") // $(".article-e").fadeIn("fast") // }); var imgFlag = true; var clickTimeId; $(bigimg).dblclick(function(){ $this = $(this); clearTimeout(clickTimeId); if(imgFlag){ imgFlag = false $this.css({ '-webkit-transform':'scale(2)', 'transform':'scale(2)' }) }else{ imgFlag = true $this.css({ '-webkit-transform':'scale(1)', 'transform':'scale(1)' }) } }); $(outerdiv).click(function(){ // 取消上次延时未执行的方法 clearTimeout(clickTimeId); //执行延时 clickTimeId = setTimeout(function() { //此处为单击事件要执行的代码 $(outerdiv).fadeOut("fast"); $(".navbar").fadeIn("fast") $(".article-e").fadeIn("fast") },300); }) } $(document).scroll(function () { var scroll_top=getScrollTop(); // 管理员一栏 if ($(window).height() - $(document).scrollTop()-scroll_top >= 200) { $(".article-e").addClass('fixedbottom'); $(".article-e").width($(".article-a").width()) } else { $(".article-e").removeClass('fixedbottom'); } })