Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,177 for Invert (0.13 sec)

  1. pkg/wasm/convert.go

    				return nil, nil, nil, fmt.Errorf("failed to convert extension config struct %+v to Wasm Network filter", typedStruct)
    			}
    		} else if typedStruct.TypeUrl == model.WasmNetworkFilterType {
    			wasmNetwork = true
    			if err := conversion.StructToMessage(typedStruct.Value, wasmNetworkFilterConfig); err != nil {
    				return nil, nil, nil, fmt.Errorf("failed to convert extension config struct %+v to Wasm HTTP filter", typedStruct)
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. src/database/sql/convert.go

    		default:
    			dv.Set(sv)
    		}
    		return nil
    	}
    
    	if dv.Kind() == sv.Kind() && sv.Type().ConvertibleTo(dv.Type()) {
    		dv.Set(sv.Convert(dv.Type()))
    		return nil
    	}
    
    	// The following conversions use a string value as an intermediate representation
    	// to convert between various numeric types.
    	//
    	// This also allows scanning into user defined types such as "type Int int64".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  3. test/ken/convert.go

    Rob Pike <******@****.***> 1330061064 +1100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 05:24:24 UTC 2012
    - 14.9K bytes
    - Viewed (0)
  4. pkg/bootstrap/option/convert.go

    Kuat <******@****.***> 1712018105 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 00:35:05 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/stablehlo/tests/bridge/convert-tf-quant-types.mlir

    // RUN: stablehlo-quant-opt %s -convert-tf-quant-types -split-input-file -verify-diagnostics | FileCheck %s
    
    // CHECK-LABEL: func @relu_qint8
    func.func @relu_qint8(%arg0: tensor<1x!tf_type.qint8>) -> tensor<1x!tf_type.qint8> {
      // CHECK: %[[X:.*]] = "tf.Relu"(%arg0) : (tensor<1xi8>) -> tensor<1xi8>
      %0 = "tf.Relu"(%arg0) : (tensor<1x!tf_type.qint8>) -> tensor<1x!tf_type.qint8>
      func.return %0: tensor<1x!tf_type.qint8>
    }
    
    // -----
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 25.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/passes/quantize_weight.cc

        // Insert ConvertOp if it does not exist yet. Otherwise, just rewire without
        // creating a ConvertOp.
        for (const OpOperand& connected_op : op.getResult().getUses()) {
          ConvertOp convert_op =
              dyn_cast_or_null<ConvertOp>(connected_op.getOwner());
          // ConvertOp already exists. Rewire the existing convert op into f16.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/stablehlo/passes/passes.td

    }
    
    def ConvertFuncToBfloat16Pass : Pass<"stablehlo-convert-func-to-bfloat16", "mlir::func::FuncOp"> {
      let summary = "Convert a StableHLO function to bfloat16";
      let dependentDialects = ["mlir::stablehlo::StablehloDialect"];
    }
    
    def ConvertXlaCallModuleOpToBfloat16Pass : Pass<"stablehlo-convert-xla-call-module-op-to-bfloat16", "mlir::func::FuncOp"> {
      let summary = "Convert serialized XlaCallModuleOp to bfloat16";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  8. tensorflow/cc/tools/freeze_saved_model.cc

        tensor_names->insert(coo_sparse.values_tensor_name());
        tensor_names->insert(coo_sparse.indices_tensor_name());
        tensor_names->insert(coo_sparse.dense_shape_tensor_name());
      } else if (tensor_info.has_composite_tensor()) {
        for (const auto& component : tensor_info.composite_tensor().components()) {
          tensor_names->insert(component.name());
        }
      } else {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 11 08:05:36 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/functional_control_flow_to_regions.cc

      auto results = call.getResults();
      auto block_args = entry->getArguments();
      auto yield_args = std::vector<Value>();
      yield_args.insert(yield_args.end(), results.begin(), results.end());
      if (forward_block_args) {
        yield_args.insert(yield_args.end(), block_args.begin(), block_args.end());
      }
      return builder.create<YieldOp>(loc, yield_args);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/translate/export_tf_dialect_op.cc

      }
    
      // Collect all the registered attributes.
      llvm::DenseSet<llvm::StringRef> registered_attrs;
      registered_attrs.insert("name");
      registered_attrs.insert("device");
      for (const auto& attr_def : op_reg_data->op_def.attr()) {
        registered_attrs.insert(attr_def.name());
      }
      // Attributes are not in the registered attributes set will be ignored.
      for (auto& attr : inst->getAttrs()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 11.1K bytes
    - Viewed (0)
Back to top