Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 431 for Scalar (2.72 sec)

  1. staging/src/k8s.io/apiserver/pkg/cel/common/values.go

    		}
    	})
    	return t.mapOfList
    }
    
    // toMapKey returns a valid golang map key for the given element of the map list.
    // element must be a valid map list entry where all map key props are scalar types (which are comparable in go
    // and valid for use in a golang map key).
    func (t *unstructuredMapList) toMapKey(element interface{}) interface{} {
    	eObj, ok := element.(map[string]interface{})
    	if !ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 23 22:30:17 UTC 2023
    - 20.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/stack_ops_decomposition.mlir

    // RUN: tf-opt %s -split-input-file -verify-diagnostics -tf-stack-ops-decomposition | FileCheck %s
    
    // Tests simple scalar stack operations without control flow.
    
    // CHECK-LABEL: func @main
    func.func @main() -> tensor<f32> {
      // CHECK-NEXT: "tf.Const"() <{value = dense<10> : tensor<i32>}>
      %max_size = "tf.Const"() {value = dense<10> : tensor<i32>} : () -> tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 25.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch.go

    		if !originalInBounds && !modifiedInBounds {
    			break
    		}
    		// we need to compare the string representation of the scalar,
    		// because the scalar is an interface which doesn't support either < or >
    		// And that's how func sortScalars compare scalars.
    		var originalString, modifiedString string
    		var originalValue, modifiedValue interface{}
    		if originalInBounds {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 23:34:23 UTC 2023
    - 75.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_traits.h

      }
      return RankedTensorType::get(dims, a.getElementType());
    }
    }  // namespace detail
    
    // Verifies that op has the same operand and result element types (or type
    // itself, if scalar) after resolving reference types (i.e., after converting
    // reference types to their corresponding TensorFlow or standard types).
    template <typename ConcreteType>
    class SameOperandsAndResultElementTypeResolveRef
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  5. docs/en/data/github_sponsors.yml

        url: https://github.com/Kong
      - login: codacy
        avatarUrl: https://avatars.githubusercontent.com/u/1834093?v=4
        url: https://github.com/codacy
      - login: scalar
        avatarUrl: https://avatars.githubusercontent.com/u/301879?v=4
        url: https://github.com/scalar
    - - login: ObliviousAI
        avatarUrl: https://avatars.githubusercontent.com/u/65656077?v=4
        url: https://github.com/ObliviousAI
    - - login: databento
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jun 03 01:09:53 UTC 2024
    - 27K bytes
    - Viewed (0)
  6. src/crypto/elliptic/elliptic.go

    		priv[0] &= mask[bitSize%8]
    		// This is because, in tests, rand will return all zeros and we don't
    		// want to get the point at infinity and loop forever.
    		priv[1] ^= 0x42
    
    		// If the scalar is out of range, sample another random number.
    		if new(big.Int).SetBytes(priv).Cmp(N) >= 0 {
    			continue
    		}
    
    		x, y = curve.ScalarBaseMult(priv)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_collective.cc

                 << "group_size must be a compile time constant";
        }
        if (!group_size_attr.isSplat() || group_size_attr.size() != 1) {
          return all_reduce.emitOpError() << "group_size must be a scalar";
        }
        const auto group_size = group_size_attr.getSplatValue<IntegerAttr>();
    
        // Create a full group assignment. Empty group assignment errors when
        // final_op = "Div"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 16K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/RuleSourceAppliedByRuleMethodIntegrationTest.groovy

            output.contains("applying defaults from rule source CalculateName")
            output.contains("p1 = default")
        }
    
        def "@Rule method can apply abstract RuleSource with scalar input properties"() {
            buildFile << '''
                @Managed
                interface Thing {
                    String getName()
                    void setName(String name)
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 18.7K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/arm64/doc.go

    ldrsh, sturh, strh =>  MOVH.
    
    4. Go moves conditions into opcode suffix, like BLT.
    
    5. Go adds a V prefix for most floating-point and SIMD instructions, except cryptographic extension
    instructions and floating-point(scalar) instructions.
    
    Examples:
    
    	VADD V5.H8, V18.H8, V9.H8         <=>      add v9.8h, v18.8h, v5.8h
    	VLD1.P (R6)(R11), [V31.D1]        <=>      ld1 {v31.1d}, [x6], x11
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 00:21:42 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  10. src/internal/xcoff/xcoff.go

    	XMC_SV     = 8  // 32-bit supervisor call descriptor
    	XMC_BS     = 9  // BSS class
    	XMC_DS     = 10 // Function descriptor
    	XMC_UC     = 11 // Unnamed FORTRAN common
    	XMC_TC0    = 15 // TOC anchor
    	XMC_TD     = 16 // Scalar data entry in the TOC
    	XMC_SV64   = 17 // 64-bit supervisor call descriptor
    	XMC_SV3264 = 18 // Supervisor call descriptor for both 32-bit and 64-bit
    	XMC_TL     = 20 // Read/Write thread-local data
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 08 20:36:37 UTC 2023
    - 11.8K bytes
    - Viewed (0)
Back to top