Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for add_bias (0.2 sec)

  1. src/runtime/tagptr_64bit.go

    	// can do about this, so we just hope that the kernel doesn't
    	// get to really high addresses and panic if it does.
    	addrBits = 48
    
    	// In addition to the 16 bits taken from the top, we can take 3 from the
    	// bottom, because node must be pointer-aligned, giving a total of 19 bits
    	// of count.
    	tagBits = 64 - addrBits + 3
    
    	// On AIX, 64-bit addresses are split into 36-bit segment number and 28-bit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 20:22:50 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  2. buildscripts/minio-upgrade.sh

    	local got
    	got=$(mc cat "$2" | sha256sum)
    
    	if [ "${expected}" != "${got}" ]; then
    		echo "mismatch - expected ${expected}, got ${got}"
    		exit 1
    	fi
    	echo "matches - ${expected}, got ${got}"
    }
    
    add_alias() {
    	for i in $(seq 1 4); do
    		echo "... attempting to add alias $i"
    		until (mc alias set minio http://127.0.0.1:9000 minioadmin minioadmin); do
    			echo "...waiting... for 5secs" && sleep 5
    		done
    	done
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 05:08:11 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/ops/tf_op_quant_spec.cc

          }
        } else if (function_name.contains("matmul")) {
          spec->coeff_op_quant_dim[1] = -1;
          if (function_name.contains("with_bias") ||
              function_name.contains("and_bias")) {
            spec->biases_params[2] = {{0, 1},
                                      quant::GetUniformQuantizedTypeForBias};
          }
        } else if (function_name.contains("einsum")) {
          spec->coeff_op_quant_dim[1] = -1;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/tests/quantize.mlir

      %q_bias = "quantfork.qcast"(%bias) : (tensor<2xf32>) -> tensor<2x!quant.uniform<i32:f32, 0.044022349891595126>>
      %dq_bias = "quantfork.dcast"(%q_bias) : (tensor<2x!quant.uniform<i32:f32, 0.044022349891595126>>) -> tensor<2xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 19:32:28 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  5. pkg/controller/nodeipam/ipam/sync/sync_test.go

    	f.calls = append(f.calls, fmt.Sprintf("alias %v", node.Name))
    	return f.aliasRange, f.aliasErr
    }
    
    func (f *fakeAPIs) AddAlias(ctx context.Context, node *v1.Node, cidrRange *net.IPNet) error {
    	f.calls = append(f.calls, fmt.Sprintf("addAlias %v %v", node.Name, cidrRange))
    	return f.addAliasErr
    }
    
    func (f *fakeAPIs) Node(ctx context.Context, name string) (*v1.Node, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 05 23:39:52 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/util/UpgradeUtil.java

                if (aliasConfigFile.exists()) {
                    final String source = FileUtil.readUTF8(aliasConfigFile);
                    final AcknowledgedResponse response = indicesClient.prepareAliases().addAlias(indexName, aliasName, source).execute()
                            .actionGet(fessConfig.getIndexIndicesTimeout());
                    if (response.isAcknowledged()) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.1K bytes
    - Viewed (0)
Back to top