Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 73 for T_nested (0.26 sec)

  1. tensorflow/c/c_api_function_test.cc

        v.push_back(IOSpec(name, DT_INVALID));
      }
      return v;
    }
    
    // Specification for an expected edge.
    // src is either:
    // - input name (as it appears in FunctionDef)
    // - name of output tensor (in nested "add:z:0" format)
    // dst is either:
    // - output name (as it appears in FunctionDef)
    // - <name_of_node>:<index_of_this_input_into_node> (this looks the same as
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 20 22:08:54 UTC 2023
    - 63.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfr/python/tfr_gen.py

                node)
        return cst_name, cst_ty
    
      def visit_FunctionDef(self, node):
        op_def, derived_attrs = self._op_defs.lookup(node.name, node, True)
        if op_def is None:
          # Nested function. Insert it to symbol table for looking up later.
          self.symbol_table.insert_symbol(node.name, node, None)
          return
        op_name = op_def.name
        if self.symbol_table.lookup(op_name):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 27 15:27:03 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity_test.go

    			continue
    		}
    		q, err = ParseQuantity(item.alternate)
    		if err != nil {
    			t.Errorf("%#v: unexpected error: %v", item.expect, err)
    			continue
    		}
    		if len(q.s) != 0 {
    			t.Errorf("%#v: unexpected nested string: %v", item.expect, q.s)
    		}
    		if q.String() != item.expect {
    			t.Errorf("%#v: unexpected alternate canonical: %v", item.expect, q.String())
    		}
    		if len(q.s) == 0 || q.s != item.expect {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/api_test.go

    	}
    }
    
    func TestInstantiateConcurrent(t *testing.T) {
    	const src = `package p
    
    type I[P any] interface {
    	m(P)
    	n() P
    }
    
    type J = I[int]
    
    type Nested[P any] *interface{b(P)}
    
    type K = Nested[string]
    `
    	pkg := mustTypecheck(src, nil, nil)
    
    	insts := []*Interface{
    		pkg.Scope().Lookup("J").Type().Underlying().(*Interface),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

      SymbolTable symbol_table(module_for_func.get());
    
      symbol_table.insert(func);
      *serialized_func_module =
          tensorflow::SerializeMlirModule(module_for_func.get());
    }
    
    // Returns whether `op` or ops nested in `op` are outside compiled.
    bool HasOutsideCompilationNested(Operation* op) {
      return op
          ->walk([&](Operation* walked_op) {
            if (op == walked_op) return WalkResult::advance();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/testdata/swagger.json

              "type": "boolean"
            },
            "x-kubernetes-validations": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 55.4K bytes
    - Viewed (0)
  7. src/reflect/type.go

    	// Field returns a struct type's i'th field.
    	// It panics if the type's Kind is not Struct.
    	// It panics if i is not in the range [0, NumField()).
    	Field(i int) StructField
    
    	// FieldByIndex returns the nested field corresponding
    	// to the index sequence. It is equivalent to calling Field
    	// successively for each index i.
    	// It panics if the type's Kind is not Struct.
    	FieldByIndex(index []int) StructField
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/merge_control_flow.mlir

          "tf.Yield"() : () -> ()
         }) {is_stateless = false} : (tensor<i1>) -> ()
        tf_device.return
      }) {cluster_attr = "cluster_attr"} : () -> ()
      func.return
    }
    
    // Check that IfRegion groups with nested IfRegion with the same predicate are
    // merged at the same block level. There are no dependencies between IfRegions.
    
    // CHECK-LABEL: func @nested_IfRegions_with_same_predicate_same_block_level_merged
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 63.7K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/ImmutableSortedMap.java

        throw new InvalidObjectException("Use SerializedForm");
      }
    
      // This class is never actually serialized directly, but we have to make the
      // warning go away (and suppressing would suppress for all nested classes too)
      private static final long serialVersionUID = 0;
    
      /**
       * Not supported. Use {@link #toImmutableSortedMap}, which offers better type-safety, instead.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 53K bytes
    - Viewed (0)
  10. src/go/types/api_test.go

    	}
    }
    
    func TestInstantiateConcurrent(t *testing.T) {
    	const src = `package p
    
    type I[P any] interface {
    	m(P)
    	n() P
    }
    
    type J = I[int]
    
    type Nested[P any] *interface{b(P)}
    
    type K = Nested[string]
    `
    	pkg := mustTypecheck(src, nil, nil)
    
    	insts := []*Interface{
    		pkg.Scope().Lookup("J").Type().Underlying().(*Interface),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
Back to top