Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 100 for creat (0.18 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

          // Cannot canonicalize ShapeN if all inputs are dynamic.
          return failure();
        }
    
        // Create a ShapeNOp for all dynamic inputs.
        if (!dynamic_inputs.empty()) {
          auto dynamic_shape_n = rewriter.create<TF::ShapeNOp>(
              op.getLoc(), result_types, dynamic_inputs);
          for (auto index_result :
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

          Value returned_val = first_terminator->getOperand(index);
    
          // Pass through values would be defined outside the branch region. Keep
          // the type of non pass through results to create a new op later, if
          // required.
          if (returned_val.getParentBlock() == &first_branch->front()) {
            new_result_types.push_back(result.getType());
            continue;
          }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  3. pkg/scheduler/schedule_one_test.go

    				cs.CoreV1().PersistentVolumeClaims(pvc.Namespace).Create(ctx, &pvc, metav1.CreateOptions{})
    				if pvName := pvc.Spec.VolumeName; pvName != "" {
    					pv := v1.PersistentVolume{ObjectMeta: metav1.ObjectMeta{Name: pvName}}
    					cs.CoreV1().PersistentVolumes().Create(ctx, &pv, metav1.CreateOptions{})
    				}
    			}
    			snapshot := internalcache.NewSnapshot(test.pods, nodes)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/exec.go

    	// an archive from a set of object files.
    	// typically it is run in the object directory.
    	pack(b *Builder, a *Action, afile string, ofiles []string) error
    	// ld runs the linker to create an executable starting at mainpkg.
    	ld(b *Builder, root *Action, targetPath, importcfg, mainpkg string) error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  5. pkg/controller/statefulset/stateful_set_control_test.go

    		}
    
    		// create new pod 3
    		if _, err = ssc.UpdateStatefulSet(context.TODO(), set, pods); err != nil {
    			t.Fatal(err)
    		}
    		pods, err = spc.podsLister.Pods(set.Namespace).List(selector)
    		if err != nil {
    			t.Fatal(err)
    		}
    		if len(pods) != totalPods {
    			t.Fatalf("Expected create pods 2/3, got pods %v", pods)
    		}
    
    		return pods
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

           value.cast<ElementsAttr>().getType() != type))
        return builder.create<ConstOp>(loc, type, value.cast<ElementsAttr>());
      if (arith::ConstantOp::isBuildableWith(value, type))
        return builder.create<arith::ConstantOp>(loc, type, cast<TypedAttr>(value));
      if (NoValueOp::isBuildableWith(value, type))
        return builder.create<NoValueOp>(loc, type, value.cast<UnitAttr>());
      return nullptr;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_pods.go

    			} else if !subPathExists {
    				// Create the sub path now because if it's auto-created later when referenced, it may have an
    				// incorrect ownership and mode. For example, the sub path directory must have at least g+rwx
    				// when the pod specifies an fsGroup, and if the directory is not created here, Docker will
    				// later auto-create it with the incorrect mode 0750
    				// Make extra care not to escape the volume!
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

                                          /*arg_to_input_edge_offset=*/0,
                                          data_types, outside_compilation_nodes, g,
                                          n);
    
      // In body_graph, create new _Arg/_Retval nodes, and replace lifted arg
      // nodes with the new _Arg nodes.
      std::vector<Node*> lifted_arg_nodes;
      lifted_arg_nodes.reserve(
          lifted_arg_nodes_and_outside_compilation_nodes.size());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      Type element_type = getElementTypeOrSelf(dst_type);
      if (mlir::isa<IndexType>(element_type))
        return b.create<tensor::CastOp>(loc, dst_type, input);
      if (isa<TensorFlowDialect, BuiltinDialect>(element_type.getDialect()))
        return b.create<TF::CastOp>(loc, dst_type, input,
                                    /*truncate=*/b.getBoolAttr(false));
      return nullptr;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  10. pkg/proxy/nftables/proxier_test.go

    	metrics.RegisterMetrics(kubeproxyconfig.ProxyModeNFTables)
    
    	makeServiceMap(fp,
    		// create ClusterIP service
    		makeTestService("ns1", "svc1", func(svc *v1.Service) {
    			svc.Spec.ClusterIP = "172.30.0.41"
    			svc.Spec.Ports = []v1.ServicePort{{
    				Name:     "p80",
    				Port:     80,
    				Protocol: v1.ProtocolTCP,
    			}}
    		}),
    		// create LoadBalancer service with Local traffic policy
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
Back to top