Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 67 for withZip (0.28 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

             (broadcast_dimensions.getValues<APInt>()[0].getSExtValue() ==
              output_rank - input_rank);
    }
    
    // Returns true if the operation producing the provided result (`op_result`)
    // is within an op region of an operation of type `ParentType`.
    template <typename ParentType>
    bool IsWithinOpRegion(mlir::OpResult op_result) {
      mlir::Operation* parent_op = op_result.getDefiningOp()->getParentOp();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  2. pkg/config/validation/validation.go

    				}
    			} else {
    				// if this is a serviceEntry, allow ~ in exportTo as it can be used to create
    				// a service that is not even visible within the local namespace to anyone other
    				// than the proxies of that service.
    				if isServiceEntry && visibility.Instance(e) == visibility.None {
    					exportToSet.Insert(key)
    				} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

      int64_t range_end = inputs_rank + 1;     // Exclusive
      int64_t axis = op.getAxis();
      if (axis < range_begin || axis >= range_end) {
        return op.emitError() << "attribute 'axis' should be within range ["
                              << range_begin << ", " << range_end
                              << "); actual value: " << axis;
      }
    
      return success();
    }
    
    OpFoldResult PackOp::fold(FoldAdaptor) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/side-effect-analysis-test.mlir

      }
      func.return
      // expected-remark@above {{ID: 8}}
      // expected-remark@above {{Sinks: {7}}}
    }
    
    // -----
    
    // Tests about we create the dependency PwStreamResults `start` and `end`
    // within in XlaCallModule
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 20 04:39:18 UTC 2023
    - 129.7K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/exec.go

    		}
    		switch quote {
    		case '\'':
    			// “preserve the literal value of each character”
    			flag = append(flag, c)
    			continue
    		case '"':
    			// “preserve the literal value of all characters within the double-quotes,
    			// with the exception of …”
    			switch c {
    			case '`', '$', '\\':
    			default:
    				flag = append(flag, c)
    				continue
    			}
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/data.go

    // the sym to a newly created section. Section name is set from the
    // symbol name. "Seg" is the segment into which to place the new
    // section, "forceType" is the new sym.SymKind to assign to the symbol
    // within the section, and "rwx" holds section permissions.
    func (state *dodataState) allocateSingleSymSections(seg *sym.Segment, symn sym.SymKind, forceType sym.SymKind, rwx int) {
    	ldr := state.ctxt.loader
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (1)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    					}
    				})
    			}
    		})
    	}
    }
    
    // TestValidationExpressionsInSchema tests CEL integration with custom resource values and OpenAPIv3 for cases
    // where the validation rules are defined at any level within the schema.
    func TestValidationExpressionsAtSchemaLevels(t *testing.T) {
    	tests := []struct {
    		name   string
    		schema *schema.Structural
    		obj    interface{}
    		oldObj interface{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  8. src/reflect/value.go

    	default:
    		return v.Type().Comparable()
    	}
    }
    
    // Equal reports true if v is equal to u.
    // For two invalid values, Equal will report true.
    // For an interface value, Equal will compare the value within the interface.
    // Otherwise, If the values have different types, Equal will report false.
    // Otherwise, for arrays and structs Equal will compare each element in order,
    // and report false if it finds non-equal elements.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

        Returns True if it is a variable.
      """
      return node_def.op == 'VarHandleOp'
    
    
    def _find_variables(
        graph_def: graph_pb2.GraphDef,
    ) -> Mapping[str, node_def_pb2.NodeDef]:
      """Finds all variables within `graph_def`.
    
      This function makes sense for TF 1 graphs only, as it depends on
      `shared_name`.
    
      Args:
        graph_def: `GraphDef` to find variables from.
    
      Returns:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/generic.rules

    // of the expression. At that point, any constant-folding
    // opportunities should be obvious.
    // Note: don't include AddPtr here! In order to maintain the
    // invariant that pointers must stay within the pointed-to object,
    // we can't pull part of a pointer computation above the AddPtr.
    // See issue 37881.
    // Note: we don't need to handle any (x-C) cases because we already rewrite
    // (x-C) to (x+(-C)).
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
Back to top