コード例 #1
0
ファイル: views.py プロジェクト: kamihati/webzone
def api_size_edit(request):
    '''
    编辑作品尺寸
    editor: kamihati 2015/5/13
    :param request:
    :return:
    '''
    hid_id = request.POST.get('id', '')
    create_type = int(request.POST.get('create_type', 1))
    read_type = int(request.POST.get('read_type', 1))
    name = request.POST.get('title', '')
    screen_width = int(request.POST.get('screen_width', 0))
    screen_height = int(request.POST.get('screen_height', 0))
    print_width = float(request.POST.get('print_width', 0))
    print_height = float(request.POST.get('print_height', 0))
    origin_width = int(request.POST.get('origin_width', ''))
    origin_height = int(request.POST.get('origin_height', ''))
    temp_type = int(request.POST.get('temp_type', 1))
    res_path = request.POST.get("res_path")
    widget_pages_size = WidgetPageSize()
    if hid_id != "":
        widget_pages_size = WidgetPageSize.objects.get(pk=hid_id)

    widget_pages_size.name = name
    widget_pages_size.create_type = create_type
    widget_pages_size.read_type = read_type
    widget_pages_size.screen_width = screen_width
    widget_pages_size.screen_height = screen_height
    widget_pages_size.print_width = print_width
    widget_pages_size.print_height = print_height
    widget_pages_size.origin_width = origin_width
    widget_pages_size.origin_height = origin_height
    widget_pages_size.temp_type = temp_type
    widget_pages_size.save()
    if res_path.find("temp") >= 0:  #有新上传文件
        ext = os.path.splitext(res_path)[1]
        if ext not in ('.jpg','.jpeg','.png','.gif','.bmp'):
            return HttpResponse(u"上传图片格式不正确:%s" % ext)
        res_type = 21   # 作品尺寸图片
        asset_res_path = "%s/%s" % (get_lib_path(request.user.library, res_type), widget_pages_size.id)
        if not os.path.exists(os.path.join(MEDIA_ROOT, asset_res_path)):
            os.makedirs(os.path.join(MEDIA_ROOT, asset_res_path))
        widget_pages_size.res_path = "%s/origin%s" % (asset_res_path, ext)
        widget_pages_size.img_small_path = widget_pages_size.res_path.replace("origin", "s")
        move_temp_file(res_path, asset_res_path + "/origin")
        # open(os.path.join(MEDIA_ROOT, widget_pages_size.res_path), "wb").write(open(os.path.join(MEDIA_ROOT, widget_pages_size.res_path), "rb").read())
        # try: os.remove(os.path.join(MEDIA_ROOT, res_path))
        # except: pass
        from PIL import Image
        img = Image.open(os.path.join(MEDIA_ROOT, widget_pages_size.res_path))
        #print get_small_size(img.size[0], img.size[1])
        img.thumbnail(get_small_size(img.size[0], img.size[1]), Image.ANTIALIAS)
        img.save(os.path.join(MEDIA_ROOT, widget_pages_size.img_small_path))
        widget_pages_size.save()
    #记录日志
    #add_manager_action_log(request, u'%s新建/更新了作品页尺寸:[%s(%sx%s)]' % (request.user, widget_pages_size.name, widget_pages_size.print_width, widget_pages_size.print_height))
    return HttpResponse("ok")
コード例 #2
0
ファイル: bsmatmul_test.py プロジェクト: graphcore/examples
        def bs_matmul(a, b):
            outputs = {
                "output_types": [tf_type],
                "output_shapes": [tf.TensorShape(dim_res)]
            }
            lib_path = utils.get_lib_path("block_sparse")

            with tf.variable_scope("bs_matmul",
                                   reuse=tf.AUTO_REUSE,
                                   use_resource=True):
                c = ipu.custom_ops.precompiled_user_op(
                    [a, b],
                    lib_path,
                    outs=outputs,
                    op_name=op_name,
                    separate_gradients=False,
                    inputs_with_gradients=[],
                    attributes=json_attribs)
            return c
コード例 #3
0
        def bs_softmax(logits):
            outputs = {
                "output_types": [tf_type],
                "output_shapes": [tf.TensorShape(dim_block_sparse)]
            }
            lib_path = utils.get_lib_path("block_sparse")
            with tf.variable_scope("bs_softmax",
                                   reuse=tf.AUTO_REUSE,
                                   use_resource=True):
                probs = ipu.custom_ops.precompiled_user_op(
                    [logits],
                    lib_path,
                    outs=outputs,
                    op_name=op_name,
                    separate_gradients=False,
                    inputs_with_gradients=[],
                    attributes=json_attribs,
                    gradient_attributes=json_attribs)

            loss = log_loss_masked(labels, probs, empty_rows_mask)
            return probs, loss
コード例 #4
0
# Copyright (c) 2020 Graphcore Ltd. All rights reserved.

import os
import utils

utils.build_custom_ops(utils.get_lib_path("block_sparse"))

utils.set_seed(1)
コード例 #5
0
ファイル: views.py プロジェクト: kamihati/webzone
def api_edit_resource(request):
    '''
    编辑公共素材
    editor: kamihati 2015/5/11
    :param request:
    :return:
    '''
    id = request.POST.get('id', '')
    title = request.POST.get('title', '')
    temp_path = request.POST.get('temp', '')
    # 类型
    res_type = int(request.POST.get('res_type', ''))
    # 风格
    res_style = int(request.POST.get('res_style', ''))

    # 创建类型。单页。双页
    create_type = request.POST.get('create_type', 1)
    temp2_path = request.POST.get('temp2', '')
    zone_asset = ZoneAsset()
    if id != '':
        zone_asset = ZoneAsset.objects.get(pk=id)

    zone_asset.res_type = res_type
    zone_asset.res_style = res_style
    zone_asset.res_title = title
    zone_asset.user = request.user
    zone_asset.library = request.user.library
    zone_asset.page_type = 0
    zone_asset.layout_type_id = 0
    zone_asset.save()

    if res_type == 1:
        # 背景素材需要宽高和创建类型
        # 尺寸id
        size_id = int(request.POST.get('size', 0))
        if size_id == 0:
            return HttpResponse('-1')
        zone_asset.size_id = size_id
        zone_asset.create_type = create_type
        zone_asset.save()
    elif res_type in (3, 8):
        # 边框。 特效  需要上传第二资源
        if temp2_path == '' and id == '':
            return HttpResponse('-2')
        asset_res_path = "%s/%d" % (get_lib_path(request.user.library, res_type), zone_asset.id)
        if not os.path.exists(os.path.join(MEDIA_ROOT, asset_res_path)):
            os.makedirs(os.path.join(MEDIA_ROOT, asset_res_path))
        hid_mask_path = temp2_path
        ext = os.path.splitext(hid_mask_path)[1]
        if hid_mask_path.find("temp") != -1:
            # 画框
            if res_type == 3:
                if not zone_asset.mask_path:
                    zone_asset.mask_path = "%s/%d/mask%s" % (
                        get_lib_path(request.user.library, res_type), zone_asset.id, os.path.splitext(hid_mask_path)[1])
                open(os.path.join(MEDIA_ROOT, zone_asset.mask_path), "wb").write(open(os.path.join(MEDIA_ROOT, hid_mask_path), "rb").read())
            elif res_type == 8:
                # 特效类型存储源文件。
                zone_asset.origin_path = "%s/%s.swf" % (asset_res_path, zone_asset.id)
                open(os.path.join(MEDIA_ROOT, zone_asset.origin_path), "wb").write(open(os.path.join(MEDIA_ROOT, hid_mask_path), "rb").read())
            os.remove(os.path.join(MEDIA_ROOT, hid_mask_path))
            zone_asset.save()

    # 生成资源路径
    asset_res_path = "assets/%s/%s/%s" % (res_type, res_style, zone_asset.id)
    hid_res_path = temp_path
    ext = os.path.splitext(hid_res_path)[1] #扩展名 .swf等
    if hid_res_path.find("temp") != -1:
        zone_asset.res_path = "%s/origin%s" % (asset_res_path, ext)
        if res_type in (1, 2, 3, 4, 7, 8):
            if ext.lower() not in (".swf"):
                zone_asset.img_large_path = zone_asset.res_path.replace("origin", "l")
                zone_asset.img_medium_path = zone_asset.res_path.replace("origin", "m")
                zone_asset.img_small_path = zone_asset.res_path.replace("origin", "s")
            elif ext.lower() in (".swf"):
                zone_asset.img_large_path = zone_asset.res_path
                zone_asset.img_medium_path = zone_asset.res_path
                zone_asset.img_small_path = zone_asset.res_path
        elif res_type == 5: #声音
            zone_asset.res_path = "%s/%s.mp3" % (asset_res_path, zone_asset.id)
        elif res_type == 6: #视频
            zone_asset.res_path = "%s/%s.flv" % (asset_res_path, zone_asset.id)
            zone_asset.img_large_path = "%s/l.jpg" % asset_res_path  #存视频截图的原图
            zone_asset.img_small_path = "%s/s.jpg" % asset_res_path
        elif res_type == 8: #特效
            pass
            # open(os.path.join(MEDIA_ROOT, zone_asset.res_path), "wb").write(open(os.path.join(MEDIA_ROOT, hid_res_path), "rb").read())
        # 移动临时文件到指定目录
        zone_asset.res_path = move_temp_file(temp_path, "%s/origin" % asset_res_path)
        #try: os.remove(os.path.join(MEDIA_ROOT, hid_res_path))
        #except: pass

        # 处理图片素材的缩略图
        if res_type in (1, 8) or ext.lower() not in (".swf"):
            img = Image.open(os.path.join(MEDIA_ROOT, zone_asset.res_path))
            zone_asset.width = img.size[0]
            zone_asset.height = img.size[1]

            if img.size[0] > 950 or img.size[1] > 950:
                img.thumbnail((950,950), Image.ANTIALIAS)
                img.save(os.path.join(MEDIA_ROOT, zone_asset.img_large_path))
            else:
                zone_asset.img_large_path = zone_asset.res_path

            if img.size[0] > 600 or img.size[1] > 600:
                img.thumbnail((600, 600), Image.ANTIALIAS)
                img.save(os.path.join(MEDIA_ROOT, zone_asset.img_medium_path))
            else:
                zone_asset.img_medium_path = zone_asset.res_path

            img.thumbnail(get_small_size(img.size[0], img.size[1]), Image.ANTIALIAS)
            img.save(os.path.join(MEDIA_ROOT, zone_asset.img_small_path))
        zone_asset.status = 1
        zone_asset.save()
    #记录日志
    add_manager_action_log(request, u'%s编辑了公共素材[%s(%s)]' % (request.user, zone_asset.res_title, ResourceType.objects.get(pk=res_type).name))
    return HttpResponse("ok")
コード例 #6
0
ファイル: mnist_tf.py プロジェクト: graphcore/examples
import tensorflow.compat.v1 as tf
from tensorflow.python.ipu import ipu_compiler, scopes, loops, ipu_infeed_queue, ipu_outfeed_queue
from tensorflow.python.ipu import utils as ipu_utils
from tensorflow.python.ipu import dataset_benchmark
from tensorflow.python.ipu import rand_ops
from tensorflow.python.ipu import custom_ops
import argparse
import json
from functools import reduce
from operator import add
import utils
tf.disable_eager_execution()
tf.disable_v2_behavior()

block_size = [8, 8, 8]
lib_path = utils.get_lib_path("block_sparse")


def dense_layer(hiddenSize, x, scope_name):
    with tf.variable_scope(scope_name, reuse=tf.AUTO_REUSE, use_resource=True):
        w = tf.get_variable("weight",
                            shape=[x.shape[-1], hiddenSize],
                            initializer=tf.glorot_uniform_initializer())
        b = tf.get_variable("bias",
                            shape=[hiddenSize],
                            initializer=tf.zeros_initializer())
        x = tf.matmul(x, w) + b
        return tf.nn.relu(x)


def sparse_layer(hiddenSize, x, scope_name, training: bool, sparsity_mask):