Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 26 for eraseOp (0.19 sec)

  1. src/internal/chacha8rand/chacha8.go

    	if s.c == ctrMax-ctrInc {
    		s.n = uint32(len(s.buf)) - reseed
    	}
    }
    
    // Reseed reseeds the state with new random values.
    // After a call to Reseed, any previously returned random values
    // have been erased from the memory of the state and cannot be
    // recovered.
    func (s *State) Reseed() {
    	var seed [4]uint64
    	for i := range seed {
    		for {
    			x, ok := s.Next()
    			if ok {
    				seed[i] = x
    				break
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:47:29 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/initialize_variables_in_session_init.cc

                                    builder.getContext(), kSessionInitFuncName)));
      if (session_init_op) {
        session_init_op->replaceAllUsesWith(new_session_init_op);
        session_init_op->erase();
      }
      return func;
    }
    
    func::FuncOp GetOrCreateSessionInitFunc(ModuleOp module) {
      SessionInitializerOp session_init_op = GetSessionInitializerOp(module);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 23 09:05:47 UTC 2024
    - 7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/tfg-to-tfe.cc

            op->getLoc(), source_op.getToken(), /*input=*/op->getOperand(0),
            /*controlInputs=*/new_operands);
        op->replaceAllUsesWith(
            ValueRange({source_op.getOutput(), source_op.getControl()}));
        op->erase();
      });
    }
    
    class ConvertGraphOp : public OpConversionPattern<tfg::GraphOp> {
     public:
      using OpConversionPattern::OpConversionPattern;
    
      LogicalResult matchAndRewrite(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  4. platforms/core-runtime/logging/src/main/java/org/gradle/internal/deprecation/DeprecationLogger.java

         * The compiler is happy with the casting that allows to hide the checked exception.
         * The runtime is happy with the casting because the checked exception type information is captured in a generic type parameter which gets erased.
         */
        private static <T, E extends Exception> Factory<T> toUncheckedThrowingFactory(final ThrowingFactory<T, E> throwingFactory) {
            return new Factory<T>() {
                @Nullable
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  5. src/runtime/rand.go

    		mp.locks--
    	}
    }
    
    // mrandinit initializes the random state of an m.
    func mrandinit(mp *m) {
    	var seed [4]uint64
    	for i := range seed {
    		seed[i] = bootstrapRand()
    	}
    	bootstrapRandReseed() // erase key we just extracted
    	mp.chacha8.Init64(seed)
    	mp.cheaprand = rand()
    }
    
    // randn is like rand() % n but faster.
    // Do not change signature: used via linkname from other packages.
    //
    //go:nosplit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 14:32:47 UTC 2024
    - 8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

                cst.getValueAttr());
            full_range_const = new_op.getOutput();
          }
          use.set(full_range_const);
        }
        if (cst.use_empty()) cst.erase();
      });
      return func;
    }
    
    // Helper method that returns the index of the tensor with name 'tensor_name'
    // in the list of tensor names 'tensors'. It allows excluding some indices.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/passes/passes.h

    // if the "tf_saved_model.index_path" attribute has "__tf_file_prefix", will be
    // reused if it already exist in @main. Otherwise a new file prefix argument
    // will be created. @tf_quant__save function will be erased.
    //
    // Running this pass essentially has the effect of inlining the @tf_quant__save
    // into the main graph. This is beneficial when we wish to find and fetch
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  8. pilot/pkg/xds/sds_test.go

    			t.Fatalf("expect private key provider in secret")
    		}
    		if privateKeyProvider.GetFallback() {
    			t.Fatalf("expect fallback for private key provider in secret as false")
    		}
    	}
    
    	// erase private key provider in proxy-config
    	secrets, _, _ = gen.Generate(s.SetupProxy(rawProxy), &model.WatchedResource{ResourceNames: []string{"kubernetes://generic"}}, fullPush)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  9. cmd/bucket-replication-utils.go

    type VersionPurgeStatusType string
    
    const (
    	// Pending - versioned delete replication is pending.
    	Pending VersionPurgeStatusType = "PENDING"
    
    	// Complete - versioned delete replication is now complete, erase version on disk.
    	Complete VersionPurgeStatusType = "COMPLETE"
    
    	// Failed - versioned delete replication failed.
    	Failed VersionPurgeStatusType = "FAILED"
    )
    
    // Empty returns true if purge status was not set.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/kernels/xla_ops.cc

        mutex_lock l(mutex_);
        auto it = closures_.find(key);
        DCHECK(it != closures_.end());
        ExecutableClosure<ExecutableType, ClientType> value = std::move(it->second);
        closures_.erase(it);
        return value;
      }
    
      static ExecutableClosureStore* Global() {
        static ExecutableClosureStore* instance = new ExecutableClosureStore;
        return instance;
      }
    
     private:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 22:46:36 UTC 2024
    - 41.4K bytes
    - Viewed (0)
Back to top