├── .github ├── 404.html ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── documentation-request.md │ ├── feature_request.md │ └── submit-question.md ├── PULL_REQUEST_TEMPLATE.md ├── codecov.yaml └── workflows │ ├── add-to-project.yml │ ├── auto-merge.yml │ ├── blossom-ci.yml │ ├── license-header-check.yml │ ├── markdown-links-check.yml │ ├── markdown-links-check │ └── markdown-links-check-config.json │ ├── mvn-verify-check.yml │ ├── mvn-verify-check │ ├── get-deps-sha1.sh │ └── populate-daily-cache.sh │ ├── pr-description-check.yml │ ├── shell-check.yml │ └── signoff-check.yml ├── .gitignore ├── .gitmodules ├── .pre-commit-config.yaml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── DF_UDF_README.md ├── LICENSE ├── NOTICE ├── NOTICE-binary ├── README.md ├── SECURITY.md ├── aggregator └── pom.xml ├── api_validation ├── README.md ├── auditAllVersions.sh ├── pom.xml └── src │ └── main │ ├── resources │ └── log4j.properties │ └── scala │ └── com │ └── nvidia │ └── spark │ └── rapids │ └── api │ └── ApiValidation.scala ├── datagen ├── README.md ├── ScaleTest.md ├── pom.xml └── src │ └── main │ ├── scala │ ├── com │ │ └── nvidia │ │ │ └── rapids │ │ │ └── tests │ │ │ └── scaletest │ │ │ ├── ScaleTestDataGen.scala │ │ │ └── TableGenerator.scala │ └── org │ │ └── apache │ │ └── spark │ │ └── sql │ │ └── tests │ │ └── datagen │ │ └── bigDataGen.scala │ ├── spark320 │ └── scala │ │ └── org │ │ └── apache │ │ └── spark │ │ └── sql │ │ └── tests │ │ └── datagen │ │ └── DataGenExprShims.scala │ └── spark400 │ └── scala │ └── org │ └── apache │ └── spark │ └── sql │ └── tests │ └── datagen │ └── DataGenExprShims.scala ├── delta-lake ├── README.md ├── common │ └── src │ │ └── main │ │ ├── databricks │ │ └── scala │ │ │ ├── com │ │ │ ├── databricks │ │ │ │ └── sql │ │ │ │ │ └── transaction │ │ │ │ │ └── tahoe │ │ │ │ │ └── rapids │ │ │ │ │ ├── GpuCheckDeltaInvariant.scala │ │ │ │ │ ├── GpuDeltaCatalogBase.scala │ │ │ │ │ ├── GpuDeltaInvariantCheckerExec.scala │ │ │ │ │ └── GpuDeltaLog.scala │ │ │ └── nvidia │ │ │ │ └── spark │ │ │ │ └── rapids │ │ │ │ └── delta │ │ │ │ ├── DatabricksDeltaProviderBase.scala │ │ │ │ ├── DeleteCommandMeta.scala │ │ │ │ ├── DeltaWriteUtils.scala │ │ │ │ ├── GpuDeltaParquetFileFormatBase.scala │ │ │ │ ├── MergeIntoCommandMeta.scala │ │ │ │ ├── RapidsDeltaSQLConf.scala │ │ │ │ ├── RapidsDeltaUtils.scala │ │ │ │ ├── UpdateCommandMeta.scala │ │ │ │ └── shims │ │ │ │ ├── StatsExprShim.scala │ │ │ │ └── package-shims.scala │ │ │ └── org │ │ │ └── apache │ │ │ └── spark │ │ │ └── sql │ │ │ └── rapids │ │ │ └── delta │ │ │ ├── GpuIdentityColumn.scala │ │ │ ├── GpuOptimizeWriteExchangeExec.scala │ │ │ └── OptimizeWriteExchangeExec.scala │ │ ├── delta-20x-24x │ │ └── scala │ │ │ ├── com │ │ │ └── nvidia │ │ │ │ └── spark │ │ │ │ └── rapids │ │ │ │ └── delta │ │ │ │ ├── Delta20xConfigChecker.scala │ │ │ │ ├── Delta2xProviderBase.scala │ │ │ │ └── shims │ │ │ │ └── StatsExprShim.scala │ │ │ └── org │ │ │ └── apache │ │ │ └── spark │ │ │ └── sql │ │ │ └── delta │ │ │ ├── rapids │ │ │ ├── GpuOptimisticTransactionBase.scala │ │ │ ├── GpuWriteIntoDelta.scala │ │ │ └── ShimDeltaInvariantCheckerExec.scala │ │ │ └── shims │ │ │ └── ShimOptimisticTransaction.scala │ │ ├── delta-33x-40x │ │ └── scala │ │ │ ├── com │ │ │ └── nvidia │ │ │ │ └── spark │ │ │ │ └── rapids │ │ │ │ └── delta │ │ │ │ ├── DeltaWriteUtils.scala │ │ │ │ ├── GpuDeltaCatalogBase.scala │ │ │ │ └── common │ │ │ │ ├── DeleteCommandMetaBase.scala │ │ │ │ ├── DeltaDynamicPartitionOverwriteCommandMetaBase.scala │ │ │ │ ├── DeltaProviderBase.scala │ │ │ │ ├── GpuDeltaParquetFileFormatBase.scala │ │ │ │ ├── MergeIntoCommandMetaBase.scala │ │ │ │ ├── OptimizeTableCommandMetaBase.scala │ │ │ │ ├── RapidsRowIndexFilters.scala │ │ │ │ └── UpdateCommandMetaBase.scala │ │ │ └── org │ │ │ └── apache │ │ │ └── spark │ │ │ └── sql │ │ │ ├── GpuDeltaDynamicPartitionOverwriteCommand.scala │ │ │ └── delta │ │ │ ├── hooks │ │ │ └── GpuAutoCompact.scala │ │ │ └── rapids │ │ │ ├── DeltaCommandShims.scala │ │ │ ├── DeltaRuntimeShimBase.scala │ │ │ ├── DeltaTrampoline.scala │ │ │ ├── GpuCreateDeltaTableCommandBase.scala │ │ │ ├── GpuDeleteCommandBase.scala │ │ │ ├── GpuOptimisticTransactionBase.scala │ │ │ ├── GpuOptimizeTableCommand.scala │ │ │ ├── GpuUpdateCommandBase.scala │ │ │ ├── commands │ │ │ └── GpuOptimizeExecutor.scala │ │ │ └── common │ │ │ └── GpuDeltaFileFormatWriterBase.scala │ │ ├── delta-33x │ │ └── scala │ │ │ ├── com │ │ │ └── nvidia │ │ │ │ └── spark │ │ │ │ └── rapids │ │ │ │ └── delta │ │ │ │ └── shims │ │ │ │ └── StatsExprShim.scala │ │ │ └── org │ │ │ └── apache │ │ │ └── spark │ │ │ └── sql │ │ │ └── delta │ │ │ ├── hooks │ │ │ └── GpuAutoCompact.scala │ │ │ ├── rapids │ │ │ ├── GpuOptimizeWriteExchangeExec.scala │ │ │ ├── GpuWriteIntoDelta.scala │ │ │ └── ShimDeltaInvariantCheckerExec.scala │ │ │ └── shims │ │ │ └── ShimOptimisticTransaction.scala │ │ ├── delta-40x │ │ └── scala │ │ │ ├── com │ │ │ └── nvidia │ │ │ │ └── spark │ │ │ │ └── rapids │ │ │ │ └── delta │ │ │ │ └── shims │ │ │ │ └── StatsExprShim.scala │ │ │ └── org │ │ │ └── apache │ │ │ └── spark │ │ │ └── sql │ │ │ └── delta │ │ │ ├── hooks │ │ │ └── GpuAutoCompact.scala │ │ │ ├── rapids │ │ │ ├── GpuOptimizeWriteExchangeExec.scala │ │ │ ├── GpuWriteIntoDelta.scala │ │ │ └── ShimDeltaInvariantCheckerExec.scala │ │ │ └── shims │ │ │ └── ShimOptimisticTransaction.scala │ │ ├── delta-io │ │ └── scala │ │ │ ├── com │ │ │ └── nvidia │ │ │ │ └── spark │ │ │ │ └── rapids │ │ │ │ └── delta │ │ │ │ ├── DeltaConfigChecker.scala │ │ │ │ ├── DeltaIOProvider.scala │ │ │ │ ├── GpuDeltaDataSource.scala │ │ │ │ ├── GpuDeltaParquetFileFormat.scala │ │ │ │ ├── RapidsDeltaSQLConf.scala │ │ │ │ ├── RapidsDeltaUtils.scala │ │ │ │ └── shims │ │ │ │ ├── ShimDeltaUDF.scala │ │ │ │ └── package-shims.scala │ │ │ └── org │ │ │ └── apache │ │ │ └── spark │ │ │ └── sql │ │ │ ├── delta │ │ │ └── rapids │ │ │ │ ├── AbstractGpuOptimisticTransactionBase.scala │ │ │ │ ├── DeltaRuntimeShim.scala │ │ │ │ ├── GpuCheckDeltaInvariant.scala │ │ │ │ ├── GpuDeltaCatalogBase.scala │ │ │ │ ├── GpuDeltaInvariantCheckerExec.scala │ │ │ │ └── GpuDeltaLog.scala │ │ │ └── rapids │ │ │ └── delta │ │ │ └── GpuIdentityColumn.scala │ │ └── scala │ │ ├── com │ │ └── nvidia │ │ │ └── spark │ │ │ └── rapids │ │ │ └── delta │ │ │ ├── DeltaProviderImplBase.scala │ │ │ ├── GpuDeltaIdentityColumnStatsTracker.scala │ │ │ ├── GpuDeltaParquetFileFormatUtils.scala │ │ │ ├── GpuDeltaTaskStatisticsTracker.scala │ │ │ ├── GpuRapidsProcessDeltaMergeJoinExec.scala │ │ │ ├── GpuStatisticsCollection.scala │ │ │ ├── RapidsDeltaWrite.scala │ │ │ └── deltaUDFs.scala │ │ └── org │ │ └── apache │ │ └── spark │ │ └── sql │ │ └── rapids │ │ └── delta │ │ └── DeltaShufflePartitionsUtil.scala ├── delta-20x │ ├── pom.xml │ └── src │ │ └── main │ │ └── scala │ │ ├── com │ │ └── nvidia │ │ │ └── spark │ │ │ └── rapids │ │ │ └── delta │ │ │ ├── delta20x │ │ │ ├── DeleteCommandMeta.scala │ │ │ ├── Delta20xProvider.scala │ │ │ ├── GpuDelta20xParquetFileFormat.scala │ │ │ ├── MergeIntoCommandMeta.scala │ │ │ └── UpdateCommandMeta.scala │ │ │ └── shims │ │ │ └── MetadataShims.scala │ │ └── org │ │ └── apache │ │ └── spark │ │ └── sql │ │ └── delta │ │ └── rapids │ │ └── delta20x │ │ ├── Delta20xRuntimeShim.scala │ │ ├── GpuCreateDeltaTableCommand.scala │ │ ├── GpuDeleteCommand.scala │ │ ├── GpuDeltaCatalog.scala │ │ ├── GpuMergeIntoCommand.scala │ │ ├── GpuOptimisticTransaction.scala │ │ └── GpuUpdateCommand.scala ├── delta-21x │ ├── pom.xml │ └── src │ │ └── main │ │ └── scala │ │ ├── com │ │ └── nvidia │ │ │ └── spark │ │ │ └── rapids │ │ │ └── delta │ │ │ ├── delta21x │ │ │ ├── DeleteCommandMeta.scala │ │ │ ├── Delta21xProvider.scala │ │ │ ├── GpuDelta21xParquetFileFormat.scala │ │ │ ├── MergeIntoCommandMeta.scala │ │ │ └── UpdateCommandMeta.scala │ │ │ └── shims │ │ │ └── MetadataShims.scala │ │ └── org │ │ └── apache │ │ └── spark │ │ └── sql │ │ └── delta │ │ └── rapids │ │ └── delta21x │ │ ├── Delta21xRuntimeShim.scala │ │ ├── GpuCreateDeltaTableCommand.scala │ │ ├── GpuDeleteCommand.scala │ │ ├── GpuDeltaCatalog.scala │ │ ├── GpuMergeIntoCommand.scala │ │ ├── GpuOptimisticTransaction.scala │ │ └── GpuUpdateCommand.scala ├── delta-22x │ ├── pom.xml │ └── src │ │ └── main │ │ └── scala │ │ ├── com │ │ └── nvidia │ │ │ └── spark │ │ │ └── rapids │ │ │ └── delta │ │ │ ├── delta22x │ │ │ ├── DeleteCommandMeta.scala │ │ │ ├── Delta22xProvider.scala │ │ │ ├── GpuDelta22xParquetFileFormat.scala │ │ │ ├── MergeIntoCommandMeta.scala │ │ │ └── UpdateCommandMeta.scala │ │ │ └── shims │ │ │ └── MetadataShims.scala │ │ └── org │ │ └── apache │ │ └── spark │ │ └── sql │ │ └── delta │ │ └── rapids │ │ └── delta22x │ │ ├── Delta22xRuntimeShim.scala │ │ ├── GpuCreateDeltaTableCommand.scala │ │ ├── GpuDeleteCommand.scala │ │ ├── GpuDeltaCatalog.scala │ │ ├── GpuMergeIntoCommand.scala │ │ ├── GpuOptimisticTransaction.scala │ │ └── GpuUpdateCommand.scala ├── delta-23x │ ├── pom.xml │ └── src │ │ └── main │ │ └── scala │ │ ├── com │ │ └── nvidia │ │ │ └── spark │ │ │ └── rapids │ │ │ └── delta │ │ │ ├── delta23x │ │ │ ├── DeleteCommandMeta.scala │ │ │ ├── Delta23xProvider.scala │ │ │ ├── GpuDelta23xParquetFileFormat.scala │ │ │ ├── GpuDeltaCatalog.scala │ │ │ ├── MergeIntoCommandMeta.scala │ │ │ └── UpdateCommandMeta.scala │ │ │ └── shims │ │ │ └── MetadataShims.scala │ │ └── org │ │ └── apache │ │ └── spark │ │ └── sql │ │ └── delta │ │ └── rapids │ │ └── delta23x │ │ ├── Delta23xRuntimeShim.scala │ │ ├── GpuCreateDeltaTableCommand.scala │ │ ├── GpuDeleteCommand.scala │ │ ├── GpuMergeIntoCommand.scala │ │ ├── GpuOptimisticTransaction.scala │ │ └── GpuUpdateCommand.scala ├── delta-24x │ ├── pom.xml │ └── src │ │ └── main │ │ └── scala │ │ ├── com │ │ └── nvidia │ │ │ └── spark │ │ │ └── rapids │ │ │ └── delta │ │ │ ├── delta24x │ │ │ ├── DeleteCommandMeta.scala │ │ │ ├── Delta24xProvider.scala │ │ │ ├── GpuDelta24xParquetFileFormat.scala │ │ │ ├── GpuDeltaCatalog.scala │ │ │ ├── MergeIntoCommandMeta.scala │ │ │ └── UpdateCommandMeta.scala │ │ │ └── shims │ │ │ └── MetadataShims.scala │ │ └── org │ │ └── apache │ │ └── spark │ │ └── sql │ │ └── delta │ │ └── rapids │ │ └── delta24x │ │ ├── Delta24xRuntimeShim.scala │ │ ├── GpuCreateDeltaTableCommand.scala │ │ ├── GpuDeleteCommand.scala │ │ ├── GpuLowShuffleMergeCommand.scala │ │ ├── GpuMergeIntoCommand.scala │ │ ├── GpuOptimisticTransaction.scala │ │ └── GpuUpdateCommand.scala ├── delta-33x │ ├── pom.xml │ └── src │ │ └── main │ │ └── scala │ │ ├── com │ │ └── nvidia │ │ │ └── spark │ │ │ └── rapids │ │ │ └── delta │ │ │ ├── delta33x │ │ │ ├── DeleteCommandMeta.scala │ │ │ ├── Delta33xProvider.scala │ │ │ ├── DeltaDynamicPartitionOverwriteCommandMeta.scala │ │ │ ├── GpuDelta33xParquetFileFormat.scala │ │ │ ├── GpuDeltaCatalog.scala │ │ │ ├── MergeIntoCommandMeta.scala │ │ │ ├── OptimizeTableCommandMeta.scala │ │ │ └── UpdateCommandMeta.scala │ │ │ └── shims │ │ │ └── MetadataShims.scala │ │ └── org │ │ └── apache │ │ └── spark │ │ └── sql │ │ └── delta │ │ └── rapids │ │ └── delta33x │ │ ├── Delta33xCommandShims.scala │ │ ├── Delta33xRuntimeShim.scala │ │ ├── GpuCreateDeltaTableCommand.scala │ │ ├── GpuDeleteCommand.scala │ │ ├── GpuDeltaFileFormatWriter.scala │ │ ├── GpuMergeIntoCommand.scala │ │ ├── GpuOptimisticTransaction.scala │ │ └── GpuUpdateCommand.scala ├── delta-40x │ ├── pom.xml │ └── src │ │ └── main │ │ └── scala │ │ ├── com │ │ └── nvidia │ │ │ └── spark │ │ │ └── rapids │ │ │ └── delta │ │ │ ├── delta40x │ │ │ ├── DeleteCommandMeta.scala │ │ │ ├── Delta40xProvider.scala │ │ │ ├── DeltaDynamicPartitionOverwriteCommandMeta.scala │ │ │ ├── GpuDelta40xParquetFileFormat.scala │ │ │ ├── GpuDeltaCatalog.scala │ │ │ ├── MergeIntoCommandMeta.scala │ │ │ ├── OptimizeTableCommandMeta.scala │ │ │ └── UpdateCommandMeta.scala │ │ │ └── shims │ │ │ └── MetadataShims.scala │ │ └── org │ │ └── apache │ │ └── spark │ │ └── sql │ │ └── delta │ │ └── rapids │ │ └── delta40x │ │ ├── Delta40xCommandShims.scala │ │ ├── Delta40xRuntimeShim.scala │ │ ├── GpuCreateDeltaTableCommand.scala │ │ ├── GpuDeleteCommand.scala │ │ ├── GpuDeltaFileFormatWriter.scala │ │ ├── GpuMergeIntoCommand.scala │ │ ├── GpuOptimisticTransaction.scala │ │ └── GpuUpdateCommand.scala ├── delta-spark330db │ ├── pom.xml │ └── src │ │ └── main │ │ └── scala │ │ └── com │ │ ├── databricks │ │ └── sql │ │ │ └── transaction │ │ │ └── tahoe │ │ │ └── rapids │ │ │ ├── GpuCreateDeltaTableCommand.scala │ │ │ ├── GpuDeleteCommand.scala │ │ │ ├── GpuDeltaCatalog.scala │ │ │ ├── GpuDeltaDataSource.scala │ │ │ ├── GpuDoAutoCompaction.scala │ │ │ ├── GpuMergeIntoCommand.scala │ │ │ ├── GpuOptimisticTransaction.scala │ │ │ ├── GpuOptimisticTransactionBase.scala │ │ │ ├── GpuOptimizeExecutor.scala │ │ │ ├── GpuUpdateCommand.scala │ │ │ └── GpuWriteIntoDelta.scala │ │ └── nvidia │ │ └── spark │ │ └── rapids │ │ └── delta │ │ ├── DeltaProbe.scala │ │ ├── DeltaSpark330DBProvider.scala │ │ ├── GpuDeltaParquetFileFormat.scala │ │ └── shims │ │ ├── DeleteCommandMetaShim.scala │ │ ├── DeltaLogShim.scala │ │ ├── InvariantViolationExceptionShim.scala │ │ ├── MergeIntoCommandMetaShim.scala │ │ ├── MetadataShims.scala │ │ ├── ShimDeltaUDF.scala │ │ └── UpdateCommandMetaShim.scala ├── delta-spark332db │ ├── pom.xml │ └── src │ │ └── main │ │ └── scala │ │ └── com │ │ ├── databricks │ │ └── sql │ │ │ └── transaction │ │ │ └── tahoe │ │ │ └── rapids │ │ │ ├── GpuCreateDeltaTableCommand.scala │ │ │ ├── GpuDeleteCommand.scala │ │ │ ├── GpuDeltaCatalog.scala │ │ │ ├── GpuDeltaDataSource.scala │ │ │ ├── GpuDoAutoCompaction.scala │ │ │ ├── GpuMergeIntoCommand.scala │ │ │ ├── GpuOptimisticTransaction.scala │ │ │ ├── GpuOptimisticTransactionBase.scala │ │ │ ├── GpuOptimizeExecutor.scala │ │ │ ├── GpuUpdateCommand.scala │ │ │ └── GpuWriteIntoDelta.scala │ │ └── nvidia │ │ └── spark │ │ └── rapids │ │ └── delta │ │ ├── DeltaProbe.scala │ │ ├── DeltaSpark332DBProvider.scala │ │ ├── GpuDeltaParquetFileFormat.scala │ │ └── shims │ │ ├── DeleteCommandMetaShim.scala │ │ ├── DeltaLogShim.scala │ │ ├── InvariantViolationExceptionShim.scala │ │ ├── MergeIntoCommandMetaShim.scala │ │ ├── MetadataShims.scala │ │ ├── ShimDeltaUDF.scala │ │ └── UpdateCommandMetaShim.scala ├── delta-spark341db │ ├── pom.xml │ └── src │ │ └── main │ │ └── scala │ │ └── com │ │ ├── databricks │ │ └── sql │ │ │ └── transaction │ │ │ └── tahoe │ │ │ └── rapids │ │ │ ├── GpuCreateDeltaTableCommand.scala │ │ │ ├── GpuDeleteCommand.scala │ │ │ ├── GpuDeltaCatalog.scala │ │ │ ├── GpuDeltaDataSource.scala │ │ │ ├── GpuDoAutoCompaction.scala │ │ │ ├── GpuLowShuffleMergeCommand.scala │ │ │ ├── GpuMergeIntoCommand.scala │ │ │ ├── GpuOptimisticTransaction.scala │ │ │ ├── GpuOptimisticTransactionBase.scala │ │ │ ├── GpuOptimizeExecutor.scala │ │ │ ├── GpuUpdateCommand.scala │ │ │ └── GpuWriteIntoDelta.scala │ │ └── nvidia │ │ └── spark │ │ └── rapids │ │ └── delta │ │ ├── DeltaProbe.scala │ │ ├── DeltaSpark341DBProvider.scala │ │ ├── GpuDeltaParquetFileFormat.scala │ │ └── shims │ │ ├── DeleteCommandMetaShim.scala │ │ ├── DeltaLogShim.scala │ │ ├── InvariantViolationExceptionShim.scala │ │ ├── MergeIntoCommandMetaShim.scala │ │ ├── MetadataShims.scala │ │ ├── ShimDeltaUDF.scala │ │ └── UpdateCommandMetaShim.scala ├── delta-spark350db143 │ ├── pom.xml │ └── src │ │ └── main │ │ └── scala │ │ └── com │ │ ├── databricks │ │ └── sql │ │ │ └── transaction │ │ │ └── tahoe │ │ │ └── rapids │ │ │ ├── GpuCreateDeltaTableCommand.scala │ │ │ ├── GpuDeleteCommand.scala │ │ │ ├── GpuDeltaCatalog.scala │ │ │ ├── GpuDeltaDataSource.scala │ │ │ ├── GpuDoAutoCompaction.scala │ │ │ ├── GpuMergeIntoCommand.scala │ │ │ ├── GpuOptimisticTransaction.scala │ │ │ ├── GpuOptimisticTransactionBase.scala │ │ │ ├── GpuOptimizeExecutor.scala │ │ │ ├── GpuUpdateCommand.scala │ │ │ └── GpuWriteIntoDelta.scala │ │ └── nvidia │ │ └── spark │ │ └── rapids │ │ └── delta │ │ ├── DeltaProbe.scala │ │ ├── DeltaSpark350DB143Provider.scala │ │ ├── GpuDeltaParquetFileFormat.scala │ │ └── shims │ │ ├── DeleteCommandMetaShim.scala │ │ ├── DeltaLogShim.scala │ │ ├── InvariantViolationExceptionShim.scala │ │ ├── MergeIntoCommandMetaShim.scala │ │ ├── MetadataShims.scala │ │ ├── ShimDeltaUDF.scala │ │ └── UpdateCommandMetaShim.scala └── delta-stub │ ├── pom.xml │ └── src │ └── main │ └── scala │ └── com │ └── nvidia │ └── spark │ └── rapids │ └── delta │ └── DeltaProbeImpl.scala ├── dev └── host_memory_leaks │ ├── README.md │ ├── find_leak.py │ └── leak_detect.cpp ├── dist ├── README.md ├── build │ └── package-parallel-worlds.py ├── maven-antrun │ └── build-parallel-worlds.xml ├── pom.xml ├── scripts │ ├── binary-dedupe.sh │ └── check-shims-revisions.sh ├── unshimmed-common-from-spark320.txt └── unshimmed-from-each-spark3xx.txt ├── docs ├── _config.yml ├── _includes │ └── analytics.html ├── _sass │ └── custom │ │ └── custom.scss ├── additional-functionality │ ├── README.md │ ├── advanced_configs.md │ ├── cache-serializer.md │ ├── per-stage-flamegraph.md │ ├── rapids-udfs.md │ ├── shuffle-docker-examples │ │ ├── Dockerfile.rocky_no_rdma │ │ ├── Dockerfile.rocky_rdma │ │ ├── Dockerfile.ubuntu_no_rdma │ │ └── Dockerfile.ubuntu_rdma │ └── udf-to-catalyst-expressions.md ├── archive.md ├── archives │ ├── CHANGELOG_0.1_to_0.5.md │ ├── CHANGELOG_21.06_to_21.12.md │ ├── CHANGELOG_22.02_to_22.12.md │ ├── CHANGELOG_23.02_to_23.12.md │ ├── CHANGELOG_24.02-to-24.12.md │ └── CHANGELOG_25.02-to-25.06.md ├── compatibility.md ├── configs.md ├── contact-us.md ├── demo │ ├── AWS-EMR │ │ └── Mortgage-ETL-GPU-EMR.ipynb │ ├── Databricks │ │ └── Mortgage-ETL-db.ipynb │ └── GCP │ │ ├── Mortgage-ETL.ipynb │ │ └── mortgage-xgboost4j-gpu-scala.ipynb ├── dev │ ├── README.md │ ├── adaptive-query.md │ ├── compute_sanitizer.md │ ├── data-sources.md │ ├── get-json-object-dump-tool.md │ ├── gpu-core-dumps.md │ ├── hybrid-execution.md │ ├── idea-code-style-settings.md │ ├── idea-code-style-settings.xml │ ├── lore.md │ ├── mem_debug.md │ ├── microk8s.md │ ├── nvtx_profiling.md │ ├── nvtx_ranges.md │ ├── shimplify.md │ ├── shims.md │ └── testing.md ├── download.md ├── img │ ├── AWS-EMR │ │ ├── EMR_notebook_2.png │ │ ├── EMR_notebook_3.png │ │ ├── bootstrap-action.png │ │ ├── cluster-configuration.png │ │ ├── name-and-applications.png │ │ ├── networking.png │ │ ├── notebook-workspace-creation.png │ │ ├── spark-history-server-UI.png │ │ └── ssh-key-pair.png │ ├── Databricks │ │ ├── a-metric-graph.png │ │ ├── grafana.png │ │ ├── initscript.png │ │ ├── initscript_ucx.png │ │ ├── list-metrics-result.png │ │ ├── list-metrics.png │ │ ├── prometheus-datasource.png │ │ ├── save-prometheus.png │ │ ├── sparkconfig.png │ │ └── sparkconfig_ucx.png │ ├── GCP │ │ ├── dataproc-cluster.png │ │ └── dataproc-service.png │ ├── Tools │ │ ├── qualification-tool-app-view-01.png │ │ ├── qualification-tool-app-view-02.png │ │ ├── qualification-tool-app-view-03.png │ │ └── qualification-tool-recommendation-indexview-with-persql.png │ ├── concurrentPythonWorker.PNG │ ├── flamegraph.png │ ├── join-sql-ui-example.png │ ├── perf-cost.png │ ├── spark3cluster.png │ └── tpcxbb-like-results.png ├── index.md ├── security.md └── supported_ops.md ├── iceberg ├── pom.xml └── src │ └── main │ ├── java │ ├── com │ │ └── nvidia │ │ │ └── spark │ │ │ └── rapids │ │ │ ├── fileio │ │ │ └── iceberg │ │ │ │ ├── IcebergFileIO.java │ │ │ │ ├── IcebergInputFile.java │ │ │ │ ├── IcebergInputStream.java │ │ │ │ ├── IcebergOutputFile.java │ │ │ │ └── IcebergOutputStream.java │ │ │ └── iceberg │ │ │ └── GpuInternalRow.java │ └── org │ │ └── apache │ │ └── iceberg │ │ ├── data │ │ └── GpuFileHelpers.java │ │ └── spark │ │ └── source │ │ ├── GpuSparkPlanningUtil.java │ │ └── GpuStructInternalRow.java │ └── scala │ ├── com │ └── nvidia │ │ └── spark │ │ └── rapids │ │ └── iceberg │ │ ├── GpuIcebergPartitioner.scala │ │ ├── IcebergProviderImpl.scala │ │ ├── data │ │ ├── GpuDeleteFilter.scala │ │ └── GpuDeleteLoader.scala │ │ ├── package.scala │ │ ├── parquet │ │ ├── GpuCoalescingIcebergParquetReader.scala │ │ ├── GpuIcebergParquetAppender.scala │ │ ├── GpuMultiThreadIcebergParquetReader.scala │ │ ├── GpuParquetReaderPostProcessor.scala │ │ ├── GpuSingleThreadIcebergParquetReader.scala │ │ ├── SparkSchemaConverter.scala │ │ ├── converter │ │ │ └── FromIcebergShaded.scala │ │ └── reader.scala │ │ ├── spark │ │ ├── GpuSparkReadOptions.scala │ │ ├── GpuSparkSQLProperties.scala │ │ └── GpuSparkUtil.scala │ │ ├── testutils │ │ └── AddEqDeletes.scala │ │ └── utils │ │ └── GpuStructProjection.scala │ └── org │ └── apache │ └── iceberg │ ├── io │ ├── clustered.scala │ ├── fanout.scala │ └── rolling.scala │ ├── parquet │ └── GpuParquetIO.scala │ └── spark │ ├── GpuSparkReadConf.scala │ ├── GpuTypeToSparkType.scala │ ├── functions │ ├── GpuDaysExpression.scala │ ├── GpuHoursExpression.scala │ ├── GpuMonthsExpression.scala │ ├── GpuTruncateExpression.scala │ ├── GpuYearsExpression.scala │ ├── bucket.scala │ └── transforms.scala │ ├── package.scala │ └── source │ ├── GpuIcebergPartitionReader.scala │ ├── GpuReaderFactory.scala │ ├── GpuSparkBatch.scala │ ├── GpuSparkBatchQueryScan.scala │ ├── GpuSparkCopyOnWriteScan.scala │ ├── GpuSparkFileWriterFactory.scala │ ├── GpuSparkInputPartition.scala │ ├── GpuSparkPartitioningAwareScan.scala │ ├── GpuSparkPositionDeltaWrite.scala │ ├── GpuSparkScan.scala │ ├── GpuSparkWrite.scala │ └── write.scala ├── integration_tests ├── README.md ├── ScaleTest.md ├── conftest.py ├── pom.xml ├── pytest.ini ├── requirements.txt ├── run_pyspark_from_build.sh ├── runtests.py └── src │ ├── assembly │ └── bin.xml │ ├── main │ ├── java │ │ ├── com │ │ │ └── nvidia │ │ │ │ └── spark │ │ │ │ └── rapids │ │ │ │ └── tests │ │ │ │ └── udf │ │ │ │ └── hive │ │ │ │ ├── EmptyHiveGenericUDF.java │ │ │ │ └── EmptyHiveSimpleUDF.java │ │ └── org │ │ │ └── apache │ │ │ └── spark │ │ │ └── rapids │ │ │ └── tests │ │ │ └── TimeoutSparkListener.java │ ├── python │ │ ├── aqe_test.py │ │ ├── arithmetic_ops_test.py │ │ ├── array_test.py │ │ ├── assert_in_tests_test.py │ │ ├── asserts.py │ │ ├── ast_test.py │ │ ├── avro_test.py │ │ ├── cache_test.py │ │ ├── cast_test.py │ │ ├── cmp_test.py │ │ ├── col_size_exceeding_cudf_limit_test.py │ │ ├── collection_ops_test.py │ │ ├── conditionals_test.py │ │ ├── conftest.py │ │ ├── csv_test.py │ │ ├── data_gen.py │ │ ├── datasourcev2_read_test.py │ │ ├── datasourcev2_write_test.py │ │ ├── date_time_test.py │ │ ├── decimal_precision_over_max_test.py │ │ ├── delta_lake_auto_compact_test.py │ │ ├── delta_lake_clustered_reads_test.py │ │ ├── delta_lake_delete_test.py │ │ ├── delta_lake_liquid_clustering_test.py │ │ ├── delta_lake_low_shuffle_merge_test.py │ │ ├── delta_lake_merge_common.py │ │ ├── delta_lake_merge_test.py │ │ ├── delta_lake_optimize_table_test.py │ │ ├── delta_lake_test.py │ │ ├── delta_lake_time_travel_test.py │ │ ├── delta_lake_update_test.py │ │ ├── delta_lake_utils.py │ │ ├── delta_lake_write_test.py │ │ ├── delta_zorder_test.py │ │ ├── dpp_test.py │ │ ├── expand_exec_test.py │ │ ├── explain_mode_test.py │ │ ├── explain_test.py │ │ ├── fastparquet_compatibility_test.py │ │ ├── fastparquet_utils.py │ │ ├── generate_expr_test.py │ │ ├── get_json_test.py │ │ ├── grouping_sets_test.py │ │ ├── hash_aggregate_test.py │ │ ├── hashing_test.py │ │ ├── higher_order_functions_test.py │ │ ├── hive_delimited_text_test.py │ │ ├── hive_parquet_write_test.py │ │ ├── hive_write_test.py │ │ ├── hybrid_parquet_test.py │ │ ├── hyper_log_log_plus_plus_test.py │ │ ├── iceberg │ │ │ ├── __init__.py │ │ │ ├── iceberg_append_test.py │ │ │ ├── iceberg_ctas_test.py │ │ │ ├── iceberg_delete_test.py │ │ │ ├── iceberg_merge_on_read_test.py │ │ │ ├── iceberg_merge_test.py │ │ │ ├── iceberg_overwrite_dynamic_test.py │ │ │ ├── iceberg_overwrite_static_test.py │ │ │ ├── iceberg_rtas_test.py │ │ │ ├── iceberg_test.py │ │ │ └── iceberg_update_test.py │ │ ├── inset_test.py │ │ ├── join_test.py │ │ ├── json_fuzz_test.py │ │ ├── json_matrix_test.py │ │ ├── json_test.py │ │ ├── json_tuple_test.py │ │ ├── kudo_dump_test.py │ │ ├── limit_test.py │ │ ├── logic_test.py │ │ ├── map_test.py │ │ ├── marks.py │ │ ├── misc_expr_test.py │ │ ├── misc_test.py │ │ ├── mortgage_test.py │ │ ├── multithread_file_reader_utils.py │ │ ├── orc_cast_test.py │ │ ├── orc_test.py │ │ ├── orc_write_test.py │ │ ├── parquet_pyarrow_test.py │ │ ├── parquet_test.py │ │ ├── parquet_testing_test.py │ │ ├── parquet_write_test.py │ │ ├── project_lit_alias_test.py │ │ ├── project_presplit_test.py │ │ ├── prune_partition_column_test.py │ │ ├── pyarrow_utils.py │ │ ├── qa_nightly_select_test.py │ │ ├── qa_nightly_sql.py │ │ ├── rand_test.py │ │ ├── range_test.py │ │ ├── regexp_no_unicode_test.py │ │ ├── regexp_test.py │ │ ├── repart_test.py │ │ ├── row-based_udf_test.py │ │ ├── row_conversion_test.py │ │ ├── sample_test.py │ │ ├── scan_default_values_test.py │ │ ├── schema_evolution_test.py │ │ ├── sort_test.py │ │ ├── spark_init_internal.py │ │ ├── spark_session.py │ │ ├── string_test.py │ │ ├── string_type_test.py │ │ ├── struct_test.py │ │ ├── subquery_test.py │ │ ├── time_window_test.py │ │ ├── timezones.py │ │ ├── udf_cudf_test.py │ │ ├── udf_test.py │ │ ├── url_test.py │ │ └── window_function_test.py │ └── scala │ │ └── com │ │ └── nvidia │ │ └── spark │ │ └── rapids │ │ └── tests │ │ ├── AssertInTestsHelper.scala │ │ ├── DebugRange.scala │ │ ├── datasourcev2 │ │ └── parquet │ │ │ └── TestingV2Source.scala │ │ ├── mortgage │ │ ├── Benchmarks.scala │ │ └── MortgageSpark.scala │ │ └── scaletest │ │ ├── IdleSessionListener.scala │ │ ├── QuerySpecs.scala │ │ ├── ScaleTest.scala │ │ ├── TaskFailureListener.scala │ │ ├── TestReport.scala │ │ └── Utils.scala │ └── test │ ├── resources │ ├── Acquisition_2007Q3.txt │ ├── Performance_2007Q3.txt_0 │ ├── SPARK-32639 │ │ └── 000.snappy.parquet │ ├── V_0_11.orc │ ├── V_0_12.orc │ ├── bad_whitespace.json │ ├── binary_as_string.parquet │ ├── boolean.json │ ├── boolean_formatted.json │ ├── boolean_invalid.json │ ├── date.csv │ ├── dates.json │ ├── dates_invalid.json │ ├── decimal_locale_formatted_strings.json │ ├── decimal_locale_formatted_strings_non_aribic.json │ ├── decimals.csv │ ├── decimals.json │ ├── empty.csv │ ├── empty_arrow.parquet │ ├── empty_int_values.csv │ ├── escaped_strings.json │ ├── fixed-length-char-column-from-hive.orc │ ├── float_formatted.json │ ├── float_formatted_strings.json │ ├── floats.json │ ├── floats_edge_cases.json │ ├── floats_invalid.csv │ ├── floats_invalid.json │ ├── floats_leading_zeros.json │ ├── hive-delim-text │ │ ├── Acquisition_2007Q3 │ │ │ └── Acquisition_2007Q3.hive.txt │ │ ├── Performance_2007Q3 │ │ │ └── Performance_2007Q3.hive.txt │ │ ├── carriage-return-err │ │ │ └── carriage.return.err.hive.txt │ │ ├── carriage-return │ │ │ └── carriage.return.hive.txt │ │ ├── comments │ │ │ └── comments.hive.txt │ │ ├── date │ │ │ └── date.hive.txt │ │ ├── extended-float-values │ │ │ └── ext_float_values.hive.txt │ │ ├── simple-boolean-values │ │ │ └── bools.hive.txt │ │ ├── simple-float-values │ │ │ └── simple_float_values.hive.txt │ │ ├── simple-int-values │ │ │ └── simple_int_values.hive.txt │ │ ├── timestamp │ │ │ └── ts.hive.txt │ │ ├── trucks-1 │ │ │ └── trucks.hive.txt │ │ └── trucks-err │ │ │ └── trucks.err.hive.txt │ ├── int_array_formatted.json │ ├── int_formatted.json │ ├── int_formatted_strings.json │ ├── int_mixed_array_struct_formatted.json │ ├── int_struct_formatted.json │ ├── int_struct_formatted_problematic_rows.json │ ├── ints.json │ ├── ints_invalid.json │ ├── ints_with_whitespace.csv │ ├── invalid_ridealong_columns.json │ ├── just_comments.csv │ ├── log4j.properties │ ├── log4j2.properties │ ├── malformed1.ndjson │ ├── malformed2.ndjson │ ├── malformed3.ndjson │ ├── malformed4.ndjson │ ├── mixed-nested.ndjson │ ├── mixed-primitive-arrays.ndjson │ ├── mixed-primitives-nested.ndjson │ ├── mixed-primitives.ndjson │ ├── mixed-types-in-struct.ndjson │ ├── mixed_objects.json │ ├── nan_and_inf.csv │ ├── nan_and_inf.json │ ├── nan_and_inf_invalid.json │ ├── nan_and_inf_strings.json │ ├── nested-structs.ndjson │ ├── nested_escaped_strings.json │ ├── no-comments.csv │ ├── optional-fields.ndjson │ ├── parquet_acq │ │ └── part-00000-acquisition.snappy.parquet │ ├── parquet_perf │ │ └── part-00000-performance.snappy.parquet │ ├── people.csv │ ├── pytest_log4j.properties │ ├── repeated_columns.json │ ├── scan_emtpy_lines.json │ ├── sci_formatted.json │ ├── sci_formatted_strings.json │ ├── simple-nested.ndjson │ ├── simple_boolean_values.csv │ ├── simple_float_values.csv │ ├── simple_int_values.csv │ ├── single_quoted_strings.json │ ├── small_float_values.csv │ ├── str.csv │ ├── t0.csv │ ├── t1.csv │ ├── test_gbk.csv │ ├── test_orc_varchar.orc │ ├── timestamp-date-test.orc │ ├── timestamp-nanos.parquet │ ├── timestamp_formatted_strings.json │ ├── timestamp_ltz.orc │ ├── timestamp_tz_formatted_strings.json │ ├── timestamps.json │ ├── trucks-blank-names.csv │ ├── trucks-comments.csv │ ├── trucks-different.csv │ ├── trucks-empty-values.csv │ ├── trucks-extra-columns.csv │ ├── trucks-missing-quotes.csv │ ├── trucks-more-comments.csv │ ├── trucks-null.csv │ ├── trucks-windows.csv │ ├── trucks.csv │ ├── trucks.tsv │ ├── ts.csv │ ├── unquotedChars.json │ ├── withBackslashEscapingAnyCharacter.json │ ├── withComments.json │ ├── withNonnumericNumbers.json │ ├── withNumericLeadingZeros.json │ ├── withSingleQuotes.json │ ├── withUnquotedControlChars.json │ └── withUnquotedFieldNames.json │ ├── scala │ ├── com │ │ └── nvidia │ │ │ └── spark │ │ │ └── rapids │ │ │ ├── functionsSuite.scala │ │ │ └── tests │ │ │ └── mortgage │ │ │ ├── MortgageAdaptiveSparkSuite.scala │ │ │ └── MortgageSparkSuite.scala │ └── org │ │ └── apache │ │ └── spark │ │ └── sql │ │ └── nvidia │ │ └── SparkTestBase.scala │ ├── spark320 │ └── scala │ │ └── org │ │ └── apache │ │ └── spark │ │ └── sql │ │ └── rapids │ │ └── shims │ │ └── TrampolineUtilShim.scala │ └── spark400 │ └── scala │ └── org │ └── apache │ └── spark │ └── sql │ └── rapids │ └── shims │ └── TrampolineUtilShim.scala ├── jdk-profiles └── pom.xml ├── jenkins ├── Dockerfile-blossom.integration.rocky ├── Dockerfile-blossom.integration.ubuntu ├── Dockerfile-blossom.ubuntu ├── Jenkinsfile-blossom.premerge ├── Jenkinsfile-blossom.premerge-databricks ├── databricks │ ├── build.sh │ ├── clusterutils.py │ ├── common_vars.sh │ ├── create.py │ ├── cudf_udf_test.sh │ ├── deploy.sh │ ├── init_cuda11_runtime.sh │ ├── init_cudf_udf.sh │ ├── install_deps.py │ ├── params.py │ ├── run-build.py │ ├── run-tests.py │ ├── run_it.sh │ ├── setup.sh │ ├── shutdown.py │ └── test.sh ├── dependency-check.sh ├── deploy.sh ├── hadoop-def.sh ├── hybrid_execution.sh ├── printJarVersion.sh ├── settings.xml ├── spark-nightly-build.sh ├── spark-premerge-build.sh ├── spark-tests.sh ├── test-timezones.sh └── version-def.sh ├── pom.xml ├── python └── rapids │ ├── __init__.py │ ├── daemon.py │ ├── daemon_databricks.py │ └── worker.py ├── scala2.13 ├── README.md ├── aggregator │ └── pom.xml ├── api_validation │ └── pom.xml ├── datagen │ └── pom.xml ├── delta-lake │ ├── delta-20x │ │ └── pom.xml │ ├── delta-21x │ │ └── pom.xml │ ├── delta-22x │ │ └── pom.xml │ ├── delta-23x │ │ └── pom.xml │ ├── delta-24x │ │ └── pom.xml │ ├── delta-33x │ │ └── pom.xml │ ├── delta-40x │ │ └── pom.xml │ ├── delta-spark330db │ │ └── pom.xml │ ├── delta-spark332db │ │ └── pom.xml │ ├── delta-spark341db │ │ └── pom.xml │ ├── delta-spark350db143 │ │ └── pom.xml │ └── delta-stub │ │ └── pom.xml ├── dist │ └── pom.xml ├── iceberg │ └── pom.xml ├── integration_tests │ └── pom.xml ├── jdk-profiles │ └── pom.xml ├── pom.xml ├── shim-deps │ ├── cloudera │ │ └── pom.xml │ ├── databricks │ │ └── pom.xml │ └── pom.xml ├── shuffle-plugin │ └── pom.xml ├── sql-plugin-api │ └── pom.xml ├── sql-plugin │ └── pom.xml ├── tests │ └── pom.xml ├── tools │ └── pom.xml └── udf-compiler │ └── pom.xml ├── scalastyle-config.xml ├── scripts ├── README.md ├── audit-spark.sh ├── auto-copyrighter.sh ├── generate-changelog └── prioritize-commits.sh ├── shim-deps ├── cloudera │ └── pom.xml ├── databricks │ └── pom.xml └── pom.xml ├── shuffle-plugin ├── pom.xml └── src │ └── main │ └── scala │ └── com │ └── nvidia │ └── spark │ └── rapids │ └── shuffle │ └── ucx │ ├── UCX.scala │ ├── UCXConnection.scala │ ├── UCXShuffleTransport.scala │ └── UCXTransaction.scala ├── sql-plugin-api ├── pom.xml └── src │ └── main │ ├── java │ └── com │ │ └── nvidia │ │ └── spark │ │ ├── RapidsSimpleGroupByAggregation.java │ │ ├── RapidsUDAF.java │ │ ├── RapidsUDAFGroupByAggregation.java │ │ ├── RapidsUDF.java │ │ └── Retryable.java │ └── scala │ ├── com │ └── nvidia │ │ └── spark │ │ ├── DFUDFPlugin.scala │ │ ├── ExclusiveModeGpuDiscoveryPlugin.scala │ │ ├── SQLPlugin.scala │ │ ├── functions.scala │ │ ├── rapids │ │ ├── AssertUtils.scala │ │ ├── ColumnarRdd.scala │ │ ├── DFUDFPluginAPI.scala │ │ ├── Functions.scala │ │ ├── GpuColumnVectorUtils.scala │ │ ├── GpuCoreDumpMsg.scala │ │ ├── GpuKryoRegistrator.scala │ │ ├── PlanUtils.scala │ │ ├── RapidsShuffleHeartbeatHandler.scala │ │ ├── SQLExecPlugin.scala │ │ ├── ShimLoader.scala │ │ ├── ShimReflectionUtils.scala │ │ ├── SparkShimServiceProvider.scala │ │ └── SparkShimVersion.scala │ │ └── udf │ │ └── Plugin.scala │ └── org │ └── apache │ └── spark │ └── sql │ └── rapids │ ├── ProxyRapidsShuffleInternalManagerBase.scala │ └── execution │ └── UnshimmedTrampolineUtil.scala ├── sql-plugin ├── pom.xml └── src │ ├── main │ ├── format │ │ ├── README.md │ │ ├── ShuffleCommon.fbs │ │ ├── ShuffleMetadataRequest.fbs │ │ ├── ShuffleMetadataResponse.fbs │ │ ├── ShuffleTransferRequest.fbs │ │ └── ShuffleTransferResponse.fbs │ ├── java │ │ ├── com │ │ │ └── nvidia │ │ │ │ └── spark │ │ │ │ └── rapids │ │ │ │ ├── ColumnarCopyHelper.java │ │ │ │ ├── GpuColumnVector.java │ │ │ │ ├── GpuColumnVectorBase.java │ │ │ │ ├── GpuColumnVectorFromBuffer.java │ │ │ │ ├── GpuCompressedColumnVector.java │ │ │ │ ├── GpuPackedTableColumn.java │ │ │ │ ├── HashedPriorityQueue.java │ │ │ │ ├── InternalRowToColumnarBatchIterator.java │ │ │ │ ├── RapidsHostColumnBuilder.java │ │ │ │ ├── RapidsHostColumnVector.java │ │ │ │ ├── RapidsHostColumnVectorCore.java │ │ │ │ ├── RapidsNullSafeHostColumnVector.java │ │ │ │ ├── RapidsNullSafeHostColumnVectorCore.java │ │ │ │ ├── SlicedGpuColumnVector.java │ │ │ │ ├── SlicedSerializedColumnVector.java │ │ │ │ ├── WithTableBuffer.java │ │ │ │ ├── fileio │ │ │ │ └── hadoop │ │ │ │ │ ├── HadoopFileIO.java │ │ │ │ │ ├── HadoopInputFile.java │ │ │ │ │ ├── HadoopInputStream.java │ │ │ │ │ ├── HadoopOutputFile.java │ │ │ │ │ └── HadoopOutputStream.java │ │ │ │ └── format │ │ │ │ ├── BlockIdMeta.java │ │ │ │ ├── BufferMeta.java │ │ │ │ ├── BufferTransferRequest.java │ │ │ │ ├── BufferTransferResponse.java │ │ │ │ ├── CodecBufferDescriptor.java │ │ │ │ ├── CodecType.java │ │ │ │ ├── MetadataRequest.java │ │ │ │ ├── MetadataResponse.java │ │ │ │ ├── TableMeta.java │ │ │ │ ├── TransferRequest.java │ │ │ │ ├── TransferResponse.java │ │ │ │ └── TransferState.java │ │ └── org │ │ │ └── apache │ │ │ └── spark │ │ │ └── sql │ │ │ └── vectorized │ │ │ └── rapids │ │ │ └── AccessibleArrowColumnVector.java │ ├── scala-2.12 │ │ └── com │ │ │ └── nvidia │ │ │ └── spark │ │ │ └── rapids │ │ │ ├── ArmScalaSpecificImpl.scala │ │ │ ├── RapidsStack.scala │ │ │ └── implicits.scala │ ├── scala-2.13 │ │ └── com │ │ │ └── nvidia │ │ │ └── spark │ │ │ └── rapids │ │ │ ├── ArmScalaSpecificImpl.scala │ │ │ ├── RapidsStack.scala │ │ │ └── implicits.scala │ ├── scala │ │ ├── com │ │ │ └── nvidia │ │ │ │ └── spark │ │ │ │ ├── CurrentBatchIterator.scala │ │ │ │ ├── DFUDFPluginImpl.scala │ │ │ │ ├── FunctionsImpl.scala │ │ │ │ ├── ParquetCachedBatchSerializer.scala │ │ │ │ ├── TimingUtils.scala │ │ │ │ └── rapids │ │ │ │ ├── AbstractGpuJoinIterator.scala │ │ │ │ ├── AbstractHostByteBufferIterator.scala │ │ │ │ ├── AdaptiveSparkPlanHelperImpl.scala │ │ │ │ ├── Arm.scala │ │ │ │ ├── ArrayIndexUtils.scala │ │ │ │ ├── ArrayUtils.scala │ │ │ │ ├── AstUtil.scala │ │ │ │ ├── AutoClosableArrayBuffer.scala │ │ │ │ ├── AutoCloseColumnBatchIterator.scala │ │ │ │ ├── AvroDataFileReader.scala │ │ │ │ ├── AvroFileWriter.scala │ │ │ │ ├── AvroProvider.scala │ │ │ │ ├── BatchWithPartitionData.scala │ │ │ │ ├── BoolUtils.scala │ │ │ │ ├── BucketJoinTwoSidesPrefetch.scala │ │ │ │ ├── CloseableBufferedIterator.scala │ │ │ │ ├── ColumnCastUtil.scala │ │ │ │ ├── ColumnViewUtils.scala │ │ │ │ ├── ColumnarFileFormat.scala │ │ │ │ ├── ColumnarOutputWriter.scala │ │ │ │ ├── ColumnarPartitionReaderWithPartitionValues.scala │ │ │ │ ├── CopyCompressionCodec.scala │ │ │ │ ├── CostBasedOptimizer.scala │ │ │ │ ├── DataTypeUtils.scala │ │ │ │ ├── DateUtils.scala │ │ │ │ ├── DecimalUtil.scala │ │ │ │ ├── DeviceMemoryEventHandler.scala │ │ │ │ ├── DumpUtils.scala │ │ │ │ ├── ExecutorCache.scala │ │ │ │ ├── ExplainPlan.scala │ │ │ │ ├── FileUtils.scala │ │ │ │ ├── FloatUtils.scala │ │ │ │ ├── FoldLocalAggregate.scala │ │ │ │ ├── GatherUtils.scala │ │ │ │ ├── GpuAggregateExec.scala │ │ │ │ ├── GpuBatchScanExecMetrics.scala │ │ │ │ ├── GpuBatchUtils.scala │ │ │ │ ├── GpuBoundAttribute.scala │ │ │ │ ├── GpuBringBackToHost.scala │ │ │ │ ├── GpuCSVScan.scala │ │ │ │ ├── GpuCanonicalize.scala │ │ │ │ ├── GpuCast.scala │ │ │ │ ├── GpuCoalesceBatches.scala │ │ │ │ ├── GpuColumnarBatchIterator.scala │ │ │ │ ├── GpuColumnarBatchSerializer.scala │ │ │ │ ├── GpuColumnarToRowExec.scala │ │ │ │ ├── GpuCoreDumpHandler.scala │ │ │ │ ├── GpuDataProducer.scala │ │ │ │ ├── GpuDataTypes.scala │ │ │ │ ├── GpuDataWritingCommandExec.scala │ │ │ │ ├── GpuDeviceManager.scala │ │ │ │ ├── GpuDynamicPruningExpression.scala │ │ │ │ ├── GpuEvalMode.scala │ │ │ │ ├── GpuExec.scala │ │ │ │ ├── GpuExecutedCommandExec.scala │ │ │ │ ├── GpuExpandExec.scala │ │ │ │ ├── GpuExpressions.scala │ │ │ │ ├── GpuGenerateExec.scala │ │ │ │ ├── GpuGetJsonObject.scala │ │ │ │ ├── GpuHashPartitioningBase.scala │ │ │ │ ├── GpuInSet.scala │ │ │ │ ├── GpuJoinUtils.scala │ │ │ │ ├── GpuJsonTuple.scala │ │ │ │ ├── GpuKeyBatchingIterator.scala │ │ │ │ ├── GpuListUtils.scala │ │ │ │ ├── GpuMapUtils.scala │ │ │ │ ├── GpuMetrics.scala │ │ │ │ ├── GpuMonotonicallyIncreasingID.scala │ │ │ │ ├── GpuMultiFileReader.scala │ │ │ │ ├── GpuOrcScan.scala │ │ │ │ ├── GpuOrcTimezoneUtils.scala │ │ │ │ ├── GpuOverrides.scala │ │ │ │ ├── GpuParquetFileFormat.scala │ │ │ │ ├── GpuPartitioning.scala │ │ │ │ ├── GpuPostHocResolutionOverrides.scala │ │ │ │ ├── GpuRangePartitioner.scala │ │ │ │ ├── GpuReadCSVFileFormat.scala │ │ │ │ ├── GpuReadFileFormatWithMetrics.scala │ │ │ │ ├── GpuReadOrcFileFormat.scala │ │ │ │ ├── GpuReadParquetFileFormat.scala │ │ │ │ ├── GpuRegExpReplaceMeta.scala │ │ │ │ ├── GpuRoundRobinPartitioning.scala │ │ │ │ ├── GpuRowToColumnarExec.scala │ │ │ │ ├── GpuRunnableCommandExec.scala │ │ │ │ ├── GpuScan.scala │ │ │ │ ├── GpuSemaphore.scala │ │ │ │ ├── GpuShuffleAsyncCoalesceIterator.scala │ │ │ │ ├── GpuShuffleCoalesceExec.scala │ │ │ │ ├── GpuShuffledHashJoinExec.scala │ │ │ │ ├── GpuShuffledSizedHashJoinExec.scala │ │ │ │ ├── GpuSinglePartitioning.scala │ │ │ │ ├── GpuSortExec.scala │ │ │ │ ├── GpuSortMergeJoinMeta.scala │ │ │ │ ├── GpuSparkPartitionID.scala │ │ │ │ ├── GpuTextBasedPartitionReader.scala │ │ │ │ ├── GpuTransitionOverrides.scala │ │ │ │ ├── GpuUserDefinedFunction.scala │ │ │ │ ├── GpuWrite.scala │ │ │ │ ├── HashExprMetas.scala │ │ │ │ ├── HiveProvider.scala │ │ │ │ ├── HostAlloc.scala │ │ │ │ ├── HostColumnarToGpu.scala │ │ │ │ ├── HostMemoryStreams.scala │ │ │ │ ├── InputFileBlockRule.scala │ │ │ │ ├── InternalExclusiveModeGpuDiscoveryPlugin.scala │ │ │ │ ├── JoinGatherer.scala │ │ │ │ ├── LocationPreservingMapPartitionsRDD.scala │ │ │ │ ├── MapUtil.scala │ │ │ │ ├── MemoryChecker.scala │ │ │ │ ├── MetaUtils.scala │ │ │ │ ├── NvcompLZ4CompressionCodec.scala │ │ │ │ ├── NvcompZSTDCompressionCodec.scala │ │ │ │ ├── NvtxRangeWithDoc.scala │ │ │ │ ├── NvtxWithMetrics.scala │ │ │ │ ├── PartitionReaderIterator.scala │ │ │ │ ├── PlanShims.scala │ │ │ │ ├── Plugin.scala │ │ │ │ ├── PrioritySemaphore.scala │ │ │ │ ├── RangeConfMatcher.scala │ │ │ │ ├── RapidsConf.scala │ │ │ │ ├── RapidsMeta.scala │ │ │ │ ├── RapidsSerializerManager.scala │ │ │ │ ├── RapidsShuffleHeartbeatManager.scala │ │ │ │ ├── RegexComplexityEstimator.scala │ │ │ │ ├── RegexParser.scala │ │ │ │ ├── RmmRapidsRetryIterator.scala │ │ │ │ ├── SamplingUtils.scala │ │ │ │ ├── SaveIntoDataSourceCommandMeta.scala │ │ │ │ ├── ScalableTaskCompletion.scala │ │ │ │ ├── SchemaUtils.scala │ │ │ │ ├── ShimLoaderTemp.scala │ │ │ │ ├── ShuffleBufferCatalog.scala │ │ │ │ ├── ShuffleReceivedBufferCatalog.scala │ │ │ │ ├── SortUtils.scala │ │ │ │ ├── SparkShims.scala │ │ │ │ ├── SpillPriorities.scala │ │ │ │ ├── SpillableColumnarBatch.scala │ │ │ │ ├── SpillableKudoTable.scala │ │ │ │ ├── StrategyRules.scala │ │ │ │ ├── TableCompressionCodec.scala │ │ │ │ ├── TaskRegistryTracker.scala │ │ │ │ ├── ThreadFactoryBuilder.scala │ │ │ │ ├── TypeChecks.scala │ │ │ │ ├── VersionUtils.scala │ │ │ │ ├── asyncProfiler.scala │ │ │ │ ├── basicPhysicalOperators.scala │ │ │ │ ├── conditionalExpressions.scala │ │ │ │ ├── constraintExpressions.scala │ │ │ │ ├── cudf_utils │ │ │ │ └── HostConcatResultUtil.scala │ │ │ │ ├── dataSourceUtil.scala │ │ │ │ ├── datetimeRebaseUtils.scala │ │ │ │ ├── decimalExpressions.scala │ │ │ │ ├── delta │ │ │ │ └── DeltaProvider.scala │ │ │ │ ├── higherOrderFunctions.scala │ │ │ │ ├── hybrid │ │ │ │ ├── HostRetryAllocator.scala │ │ │ │ └── HybridHostRetryAllocator.scala │ │ │ │ ├── iceberg │ │ │ │ └── IcebergProvider.scala │ │ │ │ ├── io │ │ │ │ └── async │ │ │ │ │ ├── AsyncOutputStream.scala │ │ │ │ │ ├── AsyncRunners.scala │ │ │ │ │ ├── BoundedCompletionService.scala │ │ │ │ │ ├── ResourceBoundedThreadExecutor.scala │ │ │ │ │ ├── ResourcePools.scala │ │ │ │ │ ├── ThrottlingExecutor.scala │ │ │ │ │ └── TrafficController.scala │ │ │ │ ├── jni │ │ │ │ └── kudo │ │ │ │ │ └── KudoHostMergeResultWrapper.scala │ │ │ │ ├── limit.scala │ │ │ │ ├── literals.scala │ │ │ │ ├── lore │ │ │ │ ├── GpuLore.scala │ │ │ │ ├── OutputLoreId.scala │ │ │ │ ├── dump.scala │ │ │ │ ├── package.scala │ │ │ │ └── replay.scala │ │ │ │ ├── metrics │ │ │ │ └── GpuBubbleTimerManager.scala │ │ │ │ ├── misc.scala │ │ │ │ ├── namedExpressions.scala │ │ │ │ ├── nullExpressions.scala │ │ │ │ ├── objectsExpressions.scala │ │ │ │ ├── parquet │ │ │ │ ├── GpuParquetScan.scala │ │ │ │ ├── GpuParquetUtils.scala │ │ │ │ ├── ParquetCachedBatchSerializer.scala │ │ │ │ └── ParquetSchemaUtils.scala │ │ │ │ ├── profiler.scala │ │ │ │ ├── python │ │ │ │ ├── GpuPythonArguments.scala │ │ │ │ ├── PythonConfEntries.scala │ │ │ │ └── PythonWorkerSemaphore.scala │ │ │ │ ├── shuffle │ │ │ │ ├── BounceBufferManager.scala │ │ │ │ ├── BufferReceiveState.scala │ │ │ │ ├── BufferSendState.scala │ │ │ │ ├── RapidsShuffleClient.scala │ │ │ │ ├── RapidsShuffleServer.scala │ │ │ │ ├── RapidsShuffleTransport.scala │ │ │ │ └── WindowedBlockIterator.scala │ │ │ │ ├── sparkRapidsListeners.scala │ │ │ │ ├── spill │ │ │ │ └── SpillFramework.scala │ │ │ │ ├── v2WriteCommandMetas.scala │ │ │ │ └── window │ │ │ │ ├── BasicWindowCalc.scala │ │ │ │ ├── GpuBatchedBoundedWindowExec.scala │ │ │ │ ├── GpuBatchedWindowIteratorUtils.scala │ │ │ │ ├── GpuCachedDoublePassWindowExec.scala │ │ │ │ ├── GpuRunningWindowExec.scala │ │ │ │ ├── GpuUnboundedToUnboundedAggWindowExec.scala │ │ │ │ ├── GpuWindowExec.scala │ │ │ │ ├── GpuWindowExecMeta.scala │ │ │ │ └── GpuWindowExpression.scala │ │ └── org │ │ │ └── apache │ │ │ └── spark │ │ │ ├── rapids │ │ │ └── hybrid │ │ │ │ ├── CoalesceConvertIterator.scala │ │ │ │ ├── HybridExecutionUtils.scala │ │ │ │ ├── HybridFileSourceScanExec.scala │ │ │ │ ├── HybridParquetScanRDD.scala │ │ │ │ └── RapidsHostBatchProducer.scala │ │ │ ├── shuffle │ │ │ └── rapids │ │ │ │ └── RapidsShuffleExceptions.scala │ │ │ ├── sql │ │ │ ├── catalyst │ │ │ │ ├── expressions │ │ │ │ │ └── rapids │ │ │ │ │ │ └── Timestamp.scala │ │ │ │ ├── json │ │ │ │ │ └── rapids │ │ │ │ │ │ ├── GpuJsonScan.scala │ │ │ │ │ │ └── GpuReadJsonFileFormat.scala │ │ │ │ └── util │ │ │ │ │ └── rapids │ │ │ │ │ └── DateFormatter.scala │ │ │ ├── execution │ │ │ │ └── datasources │ │ │ │ │ ├── parquet │ │ │ │ │ └── rapids │ │ │ │ │ │ └── ParquetRecordMaterializer.scala │ │ │ │ │ └── rapids │ │ │ │ │ └── OrcFiltersWrapper.scala │ │ │ ├── hive │ │ │ │ └── rapids │ │ │ │ │ ├── GpuHiveFileFormat.scala │ │ │ │ │ ├── GpuHiveOverrides.scala │ │ │ │ │ ├── GpuHiveTableScanExec.scala │ │ │ │ │ ├── GpuHiveTextFileUtils.scala │ │ │ │ │ ├── GpuSaveAsHiveFile.scala │ │ │ │ │ ├── HiveProviderImpl.scala │ │ │ │ │ ├── RapidsHiveErrors.scala │ │ │ │ │ ├── hiveUDFs.scala │ │ │ │ │ └── rowBasedHiveUDFs.scala │ │ │ ├── nvidia │ │ │ │ ├── LogicalPlanRules.scala │ │ │ │ └── dataframe_udfs.scala │ │ │ └── rapids │ │ │ │ ├── AvroProviderImpl.scala │ │ │ │ ├── BasicColumnarWriteStatsTracker.scala │ │ │ │ ├── ColumnarWriteStatsTracker.scala │ │ │ │ ├── ExecutionPlanCaptureCallback.scala │ │ │ │ ├── ExternalSource.scala │ │ │ │ ├── GpuAvroScan.scala │ │ │ │ ├── GpuCartesianProductExec.scala │ │ │ │ ├── GpuDataSourceBase.scala │ │ │ │ ├── GpuDataSourceScanExec.scala │ │ │ │ ├── GpuFileFormatDataWriter.scala │ │ │ │ ├── GpuFileSourceScanExec.scala │ │ │ │ ├── GpuInMemoryTableScanExec.scala │ │ │ │ ├── GpuInputFileBlock.scala │ │ │ │ ├── GpuInsertIntoHadoopFsRelationCommand.scala │ │ │ │ ├── GpuJsonReadCommon.scala │ │ │ │ ├── GpuJsonToStructs.scala │ │ │ │ ├── GpuOrcFileFormat.scala │ │ │ │ ├── GpuParseUrl.scala │ │ │ │ ├── GpuPartitionwiseSampledRDD.scala │ │ │ │ ├── GpuPoissonSampler.scala │ │ │ │ ├── GpuReadAvroFileFormat.scala │ │ │ │ ├── GpuScalaUDF.scala │ │ │ │ ├── GpuScalarSubquery.scala │ │ │ │ ├── GpuShuffleDependency.scala │ │ │ │ ├── GpuShuffleEnv.scala │ │ │ │ ├── GpuStructsToJson.scala │ │ │ │ ├── GpuTaskMetrics.scala │ │ │ │ ├── GpuV1WriteUtils.scala │ │ │ │ ├── GpuWriteStatsTracker.scala │ │ │ │ ├── HashFunctions.scala │ │ │ │ ├── NormalizeFloatingNumbers.scala │ │ │ │ ├── PCBSSchemaHelper.scala │ │ │ │ ├── RapidsDiskBlockManager.scala │ │ │ │ ├── RapidsPrivateUtil.scala │ │ │ │ ├── RapidsShuffleInternalManagerBase.scala │ │ │ │ ├── ShimmedExecutionPlanCaptureCallbackImpl.scala │ │ │ │ ├── TimeWindow.scala │ │ │ │ ├── TimeZoneDB.scala │ │ │ │ ├── aggregate │ │ │ │ ├── GpuApproximatePercentile.scala │ │ │ │ ├── GpuHyperLogLogPlusPlus.scala │ │ │ │ ├── GpuPercentile.scala │ │ │ │ ├── aggregateBase.scala │ │ │ │ └── aggregateFunctions.scala │ │ │ │ ├── arithmetic.scala │ │ │ │ ├── bitwise.scala │ │ │ │ ├── catalyst │ │ │ │ └── expressions │ │ │ │ │ ├── GpuEquivalentExpressions.scala │ │ │ │ │ └── GpuRandomExpressions.scala │ │ │ │ ├── collectionOperations.scala │ │ │ │ ├── complexTypeCreator.scala │ │ │ │ ├── complexTypeExtractors.scala │ │ │ │ ├── datetimeExpressions.scala │ │ │ │ ├── execution │ │ │ │ ├── ExistenceJoin.scala │ │ │ │ ├── GpuBroadcastExchangeExec.scala │ │ │ │ ├── GpuBroadcastHashJoinExecBase.scala │ │ │ │ ├── GpuBroadcastHelper.scala │ │ │ │ ├── GpuBroadcastNestedLoopJoinExecBase.scala │ │ │ │ ├── GpuBroadcastToRowExec.scala │ │ │ │ ├── GpuCustomShuffleReaderExec.scala │ │ │ │ ├── GpuHashJoin.scala │ │ │ │ ├── GpuShuffleExchangeExecBase.scala │ │ │ │ ├── GpuSubPartitionHashJoin.scala │ │ │ │ ├── GpuSubqueryBroadcastExec.scala │ │ │ │ ├── InternalColumnarRddConverter.scala │ │ │ │ ├── SerializedHostTableUtils.scala │ │ │ │ ├── ShuffledBatchRDD.scala │ │ │ │ ├── TrampolineUtil.scala │ │ │ │ └── python │ │ │ │ │ ├── BatchGroupUtils.scala │ │ │ │ │ ├── GpuAggregateInPandasExec.scala │ │ │ │ │ ├── GpuArrowEvalPythonExec.scala │ │ │ │ │ ├── GpuArrowReader.scala │ │ │ │ │ ├── GpuArrowWriter.scala │ │ │ │ │ ├── GpuFlatMapCoGroupsInPandasExec.scala │ │ │ │ │ ├── GpuFlatMapGroupsInPandasExec.scala │ │ │ │ │ ├── GpuMapInBatchExec.scala │ │ │ │ │ ├── GpuMapInPandasExec.scala │ │ │ │ │ ├── GpuPythonExecBase.scala │ │ │ │ │ ├── GpuPythonHelper.scala │ │ │ │ │ ├── GpuPythonRunnerCommon.scala │ │ │ │ │ ├── GpuPythonUDF.scala │ │ │ │ │ └── GpuWindowInPandasExecBase.scala │ │ │ │ ├── isTimestampNTZ.scala │ │ │ │ ├── mathExpressions.scala │ │ │ │ ├── predicates.scala │ │ │ │ ├── shims │ │ │ │ └── GpuFileScanRDD.scala │ │ │ │ ├── storage │ │ │ │ └── RapidsStorageUtils.scala │ │ │ │ ├── stringFunctions.scala │ │ │ │ ├── test │ │ │ │ └── cpuJsonExpressions.scala │ │ │ │ └── zorder │ │ │ │ ├── GpuHilbertLongIndex.scala │ │ │ │ ├── GpuInterleaveBits.scala │ │ │ │ ├── GpuPartitionerExpr.scala │ │ │ │ └── ZOrderRules.scala │ │ │ └── util │ │ │ └── random │ │ │ └── rapids │ │ │ └── XORShiftRandom.scala │ ├── spark320 │ │ ├── java │ │ │ └── com │ │ │ │ └── nvidia │ │ │ │ └── spark │ │ │ │ └── rapids │ │ │ │ └── shims │ │ │ │ └── ShimSupportsRuntimeFiltering.java │ │ └── scala │ │ │ ├── com │ │ │ └── nvidia │ │ │ │ └── spark │ │ │ │ └── rapids │ │ │ │ ├── RapidsShuffleManager.scala │ │ │ │ ├── shims │ │ │ │ ├── AQEUtils.scala │ │ │ │ ├── AggregationTagging.scala │ │ │ │ ├── AnsiCastRuleShims.scala │ │ │ │ ├── AnsiCastShim.scala │ │ │ │ ├── AnsiUtil.scala │ │ │ │ ├── BatchScanExecMeta.scala │ │ │ │ ├── BloomFilterShims.scala │ │ │ │ ├── BucketSpecForHiveShim.scala │ │ │ │ ├── BucketingUtilsShim.scala │ │ │ │ ├── CastCheckShims.scala │ │ │ │ ├── CastTimeToIntShim.scala │ │ │ │ ├── CastingConfigShim.scala │ │ │ │ ├── CharVarcharUtilsShims.scala │ │ │ │ ├── ColumnDefaultValuesShims.scala │ │ │ │ ├── ConvShim.scala │ │ │ │ ├── CreateDataSourceTableAsSelectCommandMetaShims.scala │ │ │ │ ├── CudfUnsafeRow.scala │ │ │ │ ├── CudfUnsafeRowBase.scala │ │ │ │ ├── DateTimeUtilsShims.scala │ │ │ │ ├── DecimalArithmeticOverrides.scala │ │ │ │ ├── DecimalMultiply128.scala │ │ │ │ ├── DeltaLakeUtils.scala │ │ │ │ ├── DistributionUtil.scala │ │ │ │ ├── FileSourceScanExecMeta.scala │ │ │ │ ├── FilteredPartitions.scala │ │ │ │ ├── GetJsonObjectShim.scala │ │ │ │ ├── GetMapValueMeta.scala │ │ │ │ ├── GetSequenceSize.scala │ │ │ │ ├── GlobalLimitShims.scala │ │ │ │ ├── GpuAggregateInPandasExecMeta.scala │ │ │ │ ├── GpuBatchScanExec.scala │ │ │ │ ├── GpuBatchScanExecBase.scala │ │ │ │ ├── GpuBroadcastJoinMeta.scala │ │ │ │ ├── GpuCastShims.scala │ │ │ │ ├── GpuDataSourceRDD.scala │ │ │ │ ├── GpuFileFormatDataWriterShim.scala │ │ │ │ ├── GpuHashPartitioning.scala │ │ │ │ ├── GpuIntervalUtils.scala │ │ │ │ ├── GpuOptimizedCreateHiveTableAsSelectCommandShims.scala │ │ │ │ ├── GpuOrcDataReader.scala │ │ │ │ ├── GpuOrcDataReader320Plus.scala │ │ │ │ ├── GpuOrcDataReaderBase.scala │ │ │ │ ├── GpuParquetCrypto.scala │ │ │ │ ├── GpuRangePartitioning.scala │ │ │ │ ├── GpuTypeShims.scala │ │ │ │ ├── GpuWindowInPandasExec.scala │ │ │ │ ├── HashUtils.scala │ │ │ │ ├── HybridFileSourceScanExecMeta.scala │ │ │ │ ├── InMemoryTableScanExecLikeShim.scala │ │ │ │ ├── InSubqueryShims.scala │ │ │ │ ├── LegacyBehaviorPolicyShim.scala │ │ │ │ ├── NullIntolerantShim.scala │ │ │ │ ├── NullOutputStreamShim.scala │ │ │ │ ├── OffsetWindowFunctionMeta.scala │ │ │ │ ├── OperatorsUtilShims.scala │ │ │ │ ├── OrcCastingShims.scala │ │ │ │ ├── OrcProtoWriterShim.scala │ │ │ │ ├── OrcReadingShims.scala │ │ │ │ ├── OrcShims.scala │ │ │ │ ├── OrcShims320untilAllBase.scala │ │ │ │ ├── PartitionedFileUtilsShim.scala │ │ │ │ ├── PlanShimsImpl.scala │ │ │ │ ├── PythonUDFShim.scala │ │ │ │ ├── RaiseErrorShim.scala │ │ │ │ ├── RapidsCsvScanMeta.scala │ │ │ │ ├── RapidsFileSourceMetaUtils.scala │ │ │ │ ├── RapidsOrcScanMeta.scala │ │ │ │ ├── RapidsParquetScanMeta.scala │ │ │ │ ├── RebaseShims.scala │ │ │ │ ├── ScanExecShims.scala │ │ │ │ ├── SequenceSizeTooLongErrorBuilder.scala │ │ │ │ ├── ShimAQEShuffleReadExec.scala │ │ │ │ ├── ShimBaseSubqueryExec.scala │ │ │ │ ├── ShimBroadcastExchangeLike.scala │ │ │ │ ├── ShimFilePartitionReaderFactory.scala │ │ │ │ ├── ShimLeafExecNode.scala │ │ │ │ ├── ShimPredicateHelper.scala │ │ │ │ ├── ShuffleManagerShimUtils.scala │ │ │ │ ├── ShuffleOriginUtil.scala │ │ │ │ ├── Spark31Xuntil33XShims.scala │ │ │ │ ├── Spark320PlusNonDBShims.scala │ │ │ │ ├── Spark320PlusShims.scala │ │ │ │ ├── SparkShims.scala │ │ │ │ ├── StaticPartitionShims.scala │ │ │ │ ├── TagScanForRuntimeFiltering.scala │ │ │ │ ├── TreeNode.scala │ │ │ │ ├── TryModeShim.scala │ │ │ │ ├── TypeUtilsShims.scala │ │ │ │ ├── XxHash64Shims.scala │ │ │ │ ├── YearParseUtil.scala │ │ │ │ ├── extractValueShims.scala │ │ │ │ ├── gpuWindows.scala │ │ │ │ ├── parquet │ │ │ │ │ ├── ParquetFieldIdShims.scala │ │ │ │ │ ├── ParquetLegacyNanoAsLongShims.scala │ │ │ │ │ ├── ParquetSchemaClipShims.scala │ │ │ │ │ ├── ParquetStringPredShims.scala │ │ │ │ │ └── ParquetTimestampNTZShims.scala │ │ │ │ └── spark320 │ │ │ │ │ └── SparkShimServiceProvider.scala │ │ │ │ ├── shuffle │ │ │ │ └── RapidsShuffleIterator.scala │ │ │ │ └── v1FallbackWriters.scala │ │ │ └── org │ │ │ └── apache │ │ │ └── spark │ │ │ ├── rapids │ │ │ └── shims │ │ │ │ ├── GpuShuffleBlockResolver.scala │ │ │ │ ├── GpuShuffleExchangeExec.scala │ │ │ │ ├── ShuffledBatchRDDUtil.scala │ │ │ │ └── storage │ │ │ │ └── ShimDiskBlockManager.scala │ │ │ ├── sql │ │ │ ├── catalyst │ │ │ │ ├── csv │ │ │ │ │ └── GpuCsvUtils.scala │ │ │ │ └── json │ │ │ │ │ └── GpuJsonUtils.scala │ │ │ ├── errors │ │ │ │ └── ConvUtils.scala │ │ │ ├── execution │ │ │ │ ├── ShimTrampolineUtil.scala │ │ │ │ ├── datasources │ │ │ │ │ ├── parquet │ │ │ │ │ │ ├── ShimCurrentBatchIterator.scala │ │ │ │ │ │ └── rapids │ │ │ │ │ │ │ └── shims │ │ │ │ │ │ │ └── ShimVectorizedColumnReader.scala │ │ │ │ │ ├── rapids │ │ │ │ │ │ └── DataSourceStrategyUtils.scala │ │ │ │ │ └── v2 │ │ │ │ │ │ └── rapids │ │ │ │ │ │ ├── GpuAtomicCreateTableAsSelectExec.scala │ │ │ │ │ │ └── GpuAtomicReplaceTableAsSelectExec.scala │ │ │ │ └── rapids │ │ │ │ │ └── shims │ │ │ │ │ └── FilePartitionShims.scala │ │ │ ├── hive │ │ │ │ └── rapids │ │ │ │ │ └── shims │ │ │ │ │ ├── CommandUtilsShim.scala │ │ │ │ │ ├── FileSinkDescShim.scala │ │ │ │ │ ├── GpuCreateHiveTableAsSelectCommand.scala │ │ │ │ │ ├── GpuInsertIntoHiveTable.scala │ │ │ │ │ ├── GpuRowBasedHiveGenericUDFShim.scala │ │ │ │ │ ├── HiveInspectorsShim.scala │ │ │ │ │ └── HiveProviderCmdShims.scala │ │ │ ├── nvidia │ │ │ │ └── DFUDFShims.scala │ │ │ └── rapids │ │ │ │ ├── GpuDataSource.scala │ │ │ │ ├── GpuFileFormatWriter.scala │ │ │ │ ├── RapidsCachingReader.scala │ │ │ │ ├── RapidsShuffleWriter.scala │ │ │ │ ├── aggregate │ │ │ │ └── aggregateFunctions.scala │ │ │ │ ├── arithmetic.scala │ │ │ │ ├── execution │ │ │ │ ├── GpuBroadcastHashJoinExec.scala │ │ │ │ ├── GpuBroadcastNestedLoopJoinExec.scala │ │ │ │ ├── GpuShuffleMeta.scala │ │ │ │ ├── GpuSubqueryBroadcastMeta.scala │ │ │ │ └── python │ │ │ │ │ └── shims │ │ │ │ │ ├── GpuArrowPythonOutput.scala │ │ │ │ │ ├── GpuArrowPythonRunner.scala │ │ │ │ │ ├── GpuBasePythonRunner.scala │ │ │ │ │ ├── GpuCoGroupedArrowPythonRunner.scala │ │ │ │ │ ├── GpuGroupedPythonRunnerFactory.scala │ │ │ │ │ ├── PythonArgumentUtils.scala │ │ │ │ │ └── WritePythonUDFUtils.scala │ │ │ │ └── shims │ │ │ │ ├── ArrayInvalidArgumentErrorUtils.scala │ │ │ │ ├── ArrowUtilsShim.scala │ │ │ │ ├── AvroUtils.scala │ │ │ │ ├── DataTypeUtilsShim.scala │ │ │ │ ├── GpuAscii.scala │ │ │ │ ├── GpuCastToNumberErrorShim.scala │ │ │ │ ├── GpuCreateDataSourceTableAsSelectCommandShims.scala │ │ │ │ ├── GpuJsonToStructsShim.scala │ │ │ │ ├── GpuMapInPandasExecMeta.scala │ │ │ │ ├── RapidsErrorUtils.scala │ │ │ │ ├── RapidsHadoopWriterUtils.scala │ │ │ │ ├── RapidsQueryErrorUtils.scala │ │ │ │ ├── RapidsShuffleThreadedReader.scala │ │ │ │ ├── RapidsShuffleThreadedWriter.scala │ │ │ │ ├── SchemaUtilsShims.scala │ │ │ │ ├── Spark32XShimsUtils.scala │ │ │ │ ├── SparkSessionUtils.scala │ │ │ │ ├── SparkUpgradeExceptionShims.scala │ │ │ │ ├── TrampolineConnectShims.scala │ │ │ │ ├── datetimeExpressions.scala │ │ │ │ └── misc.scala │ │ │ └── storage │ │ │ ├── RapidsPushBasedFetchHelper.scala │ │ │ └── RapidsShuffleBlockFetcherIterator.scala │ ├── spark321 │ │ └── scala │ │ │ ├── com │ │ │ └── nvidia │ │ │ │ └── spark │ │ │ │ └── rapids │ │ │ │ └── shims │ │ │ │ ├── Spark321PlusShims.scala │ │ │ │ ├── SparkShims.scala │ │ │ │ └── spark321 │ │ │ │ └── SparkShimServiceProvider.scala │ │ │ └── org │ │ │ └── apache │ │ │ └── spark │ │ │ └── sql │ │ │ └── execution │ │ │ └── datasources │ │ │ └── parquet │ │ │ └── rapids │ │ │ └── shims │ │ │ └── ShimVectorizedColumnReader.scala │ ├── spark321cdh │ │ └── scala │ │ │ └── com │ │ │ └── nvidia │ │ │ └── spark │ │ │ └── rapids │ │ │ └── shims │ │ │ ├── GpuOrcDataReader.scala │ │ │ ├── GpuParquetCrypto.scala │ │ │ ├── OrcCastingShims.scala │ │ │ ├── OrcShims.scala │ │ │ ├── OrcShims321CDHBase.scala │ │ │ └── spark321cdh │ │ │ └── SparkShimServiceProvider.scala │ ├── spark322 │ │ └── scala │ │ │ └── com │ │ │ └── nvidia │ │ │ └── spark │ │ │ └── rapids │ │ │ └── shims │ │ │ ├── SparkShims.scala │ │ │ └── spark322 │ │ │ └── SparkShimServiceProvider.scala │ ├── spark323 │ │ └── scala │ │ │ ├── com │ │ │ └── nvidia │ │ │ │ └── spark │ │ │ │ └── rapids │ │ │ │ └── shims │ │ │ │ └── spark323 │ │ │ │ └── SparkShimServiceProvider.scala │ │ │ └── org │ │ │ └── apache │ │ │ └── spark │ │ │ └── sql │ │ │ └── rapids │ │ │ └── shims │ │ │ └── GpuAscii.scala │ ├── spark324 │ │ └── scala │ │ │ ├── com │ │ │ └── nvidia │ │ │ │ └── spark │ │ │ │ └── rapids │ │ │ │ └── shims │ │ │ │ ├── parquet │ │ │ │ └── ParquetLegacyNanoAsLongShims.scala │ │ │ │ └── spark324 │ │ │ │ └── SparkShimServiceProvider.scala │ │ │ └── org │ │ │ └── apache │ │ │ └── spark │ │ │ └── sql │ │ │ └── rapids │ │ │ └── shims │ │ │ └── RapidsHadoopWriterUtils.scala │ ├── spark330 │ │ └── scala │ │ │ ├── com │ │ │ └── nvidia │ │ │ │ └── spark │ │ │ │ └── rapids │ │ │ │ ├── GpuBloomFilter.scala │ │ │ │ ├── GpuBloomFilterMightContain.scala │ │ │ │ ├── GpuInSubqueryExec.scala │ │ │ │ └── shims │ │ │ │ ├── AnsiUtil.scala │ │ │ │ ├── BloomFilterShims.scala │ │ │ │ ├── BucketSpecForHiveShim.scala │ │ │ │ ├── BucketingUtilsShim.scala │ │ │ │ ├── CastCheckShims.scala │ │ │ │ ├── CharVarcharUtilsShims.scala │ │ │ │ ├── DayTimeIntervalShims.scala │ │ │ │ ├── DistributionUtil.scala │ │ │ │ ├── FilteredPartitions.scala │ │ │ │ ├── GpuBatchScanExec.scala │ │ │ │ ├── GpuDataSourceRDD.scala │ │ │ │ ├── GpuHashPartitioning.scala │ │ │ │ ├── GpuIntervalUtils.scala │ │ │ │ ├── GpuIntervalUtilsBase.scala │ │ │ │ ├── GpuRangePartitioning.scala │ │ │ │ ├── GpuTypeShims.scala │ │ │ │ ├── InSubqueryShims.scala │ │ │ │ ├── OrcReadingShims.scala │ │ │ │ ├── OrcShims.scala │ │ │ │ ├── PythonMapInArrowExecShims.scala │ │ │ │ ├── RapidsFileSourceMetaUtils.scala │ │ │ │ ├── RapidsOrcScanMeta.scala │ │ │ │ ├── RapidsParquetScanMeta.scala │ │ │ │ ├── RoundingShims.scala │ │ │ │ ├── ScanExecShims.scala │ │ │ │ ├── Spark330PlusNonDBShims.scala │ │ │ │ ├── Spark330PlusShims.scala │ │ │ │ ├── SparkShims.scala │ │ │ │ ├── parquet │ │ │ │ ├── ParquetFieldIdShims.scala │ │ │ │ ├── ParquetSchemaClipShims.scala │ │ │ │ └── ParquetTimestampAnnotationShims.scala │ │ │ │ └── spark330 │ │ │ │ └── SparkShimServiceProvider.scala │ │ │ └── org │ │ │ └── apache │ │ │ └── spark │ │ │ └── sql │ │ │ ├── catalyst │ │ │ ├── csv │ │ │ │ └── GpuCsvUtils.scala │ │ │ └── json │ │ │ │ └── GpuJsonUtils.scala │ │ │ ├── execution │ │ │ └── datasources │ │ │ │ ├── parquet │ │ │ │ ├── RapidsVectorizedColumnReader.scala │ │ │ │ ├── ShimCurrentBatchIterator.scala │ │ │ │ └── rapids │ │ │ │ │ └── shims │ │ │ │ │ ├── ParquetCVShims.scala │ │ │ │ │ └── ShimVectorizedColumnReader.scala │ │ │ │ └── v2 │ │ │ │ └── rapids │ │ │ │ ├── GpuAtomicCreateTableAsSelectExec.scala │ │ │ │ └── GpuAtomicReplaceTableAsSelectExec.scala │ │ │ └── rapids │ │ │ ├── aggregate │ │ │ └── GpuBloomFilterAggregate.scala │ │ │ └── shims │ │ │ ├── GpuCastToNumberErrorShim.scala │ │ │ ├── GpuPythonMapInArrowExec.scala │ │ │ ├── GpuPythonMapInArrowExecMeta.scala │ │ │ ├── RapidsErrorUtils.scala │ │ │ ├── RapidsErrorUtils330To334Base.scala │ │ │ ├── RapidsErrorUtilsFor330plus.scala │ │ │ ├── RapidsShuffleThreadedReader.scala │ │ │ ├── SparkUpgradeExceptionShims.scala │ │ │ └── intervalExpressions.scala │ ├── spark330cdh │ │ └── scala │ │ │ ├── com │ │ │ └── nvidia │ │ │ │ └── spark │ │ │ │ └── rapids │ │ │ │ └── shims │ │ │ │ ├── GpuParquetCrypto.scala │ │ │ │ ├── OrcCastingShims.scala │ │ │ │ ├── OrcShims.scala │ │ │ │ ├── Spark33cdhShims.scala │ │ │ │ ├── SparkShims.scala │ │ │ │ └── spark330cdh │ │ │ │ └── SparkShimServiceProvider.scala │ │ │ └── org │ │ │ └── apache │ │ │ └── spark │ │ │ └── sql │ │ │ └── hive │ │ │ └── cdh │ │ │ └── HiveOverrides.scala │ ├── spark330db │ │ └── scala │ │ │ ├── com │ │ │ └── nvidia │ │ │ │ └── spark │ │ │ │ └── rapids │ │ │ │ ├── DatabricksShimServiceProvider.scala │ │ │ │ └── shims │ │ │ │ ├── AQEUtils.scala │ │ │ │ ├── AggregationTagging.scala │ │ │ │ ├── AnsiCastShim.scala │ │ │ │ ├── BatchScanExecMeta.scala │ │ │ │ ├── BucketSpecForHiveShim.scala │ │ │ │ ├── CastingConfigShim.scala │ │ │ │ ├── ColumnDefaultValuesShims.scala │ │ │ │ ├── DecimalArithmeticOverrides.scala │ │ │ │ ├── DeltaLakeUtils.scala │ │ │ │ ├── DistributionUtil.scala │ │ │ │ ├── FileSourceScanExecMeta.scala │ │ │ │ ├── GetMapValueMeta.scala │ │ │ │ ├── GpuBatchScanExec.scala │ │ │ │ ├── GpuBroadcastJoinMeta.scala │ │ │ │ ├── GpuCastShims.scala │ │ │ │ ├── GpuRunningWindowExecMeta.scala │ │ │ │ ├── GpuWindowInPandasExec.scala │ │ │ │ ├── PartitionedFileUtilsShim.scala │ │ │ │ ├── ShimBroadcastExchangeLike.scala │ │ │ │ ├── ShimFilePartitionReaderFactory.scala │ │ │ │ ├── ShimLeafExecNode.scala │ │ │ │ ├── ShuffleOriginUtil.scala │ │ │ │ ├── Spark321PlusDBShims.scala │ │ │ │ ├── Spark330PlusDBShims.scala │ │ │ │ ├── SparkShims.scala │ │ │ │ ├── TryModeShim.scala │ │ │ │ ├── TypeUtilsShims.scala │ │ │ │ ├── parquet │ │ │ │ ├── ParquetFieldIdShims.scala │ │ │ │ └── ParquetStringPredShims.scala │ │ │ │ ├── shimExpressions.scala │ │ │ │ └── spark330db │ │ │ │ └── SparkShimServiceProvider.scala │ │ │ └── org │ │ │ └── apache │ │ │ └── spark │ │ │ ├── rapids │ │ │ ├── execution │ │ │ │ ├── GpuSubqueryBroadcastMeta.scala │ │ │ │ ├── GpuSubqueryBroadcastMeta330DBBase.scala │ │ │ │ └── shims │ │ │ │ │ └── ReuseGpuBroadcastExchangeAndSubquery.scala │ │ │ └── shims │ │ │ │ ├── GpuDatabricksShuffleExchangeExecBase.scala │ │ │ │ └── GpuShuffleExchangeExec.scala │ │ │ └── sql │ │ │ ├── execution │ │ │ └── datasources │ │ │ │ ├── parquet │ │ │ │ └── rapids │ │ │ │ │ └── shims │ │ │ │ │ ├── ParquetCVShims.scala │ │ │ │ │ └── ShimParquetColumnVector.scala │ │ │ │ ├── rapids │ │ │ │ └── DataSourceStrategyUtils.scala │ │ │ │ └── v2 │ │ │ │ └── rapids │ │ │ │ ├── GpuAtomicCreateTableAsSelectExec.scala │ │ │ │ └── GpuAtomicReplaceTableAsSelectExec.scala │ │ │ └── rapids │ │ │ ├── GpuCheckOverflowInTableInsert.scala │ │ │ ├── aggregate │ │ │ └── aggregateFunctions.scala │ │ │ ├── arithmetic.scala │ │ │ ├── execution │ │ │ ├── GpuBroadcastHashJoinExec.scala │ │ │ ├── GpuBroadcastNestedLoopJoinExec.scala │ │ │ ├── GpuExecutorBroadcastHelper.scala │ │ │ ├── GpuShuffleMeta.scala │ │ │ ├── ShimTrampolineUtil.scala │ │ │ ├── ShuffleExchangeShim.scala │ │ │ └── python │ │ │ │ └── shims │ │ │ │ ├── GpuGroupUDFArrowPythonRunner.scala │ │ │ │ └── GpuGroupedPythonRunnerFactory.scala │ │ │ └── shims │ │ │ ├── RapidsErrorUtils.scala │ │ │ ├── RapidsErrorUtilsBase.scala │ │ │ ├── SparkDateTimeExceptionShims.scala │ │ │ └── SparkUpgradeExceptionShims.scala │ ├── spark331 │ │ └── scala │ │ │ └── com │ │ │ └── nvidia │ │ │ └── spark │ │ │ └── rapids │ │ │ └── shims │ │ │ ├── Spark331PlusNonDBShims.scala │ │ │ ├── SparkShims.scala │ │ │ └── spark331 │ │ │ └── SparkShimServiceProvider.scala │ ├── spark332 │ │ └── scala │ │ │ └── com │ │ │ └── nvidia │ │ │ └── spark │ │ │ └── rapids │ │ │ └── shims │ │ │ └── spark332 │ │ │ └── SparkShimServiceProvider.scala │ ├── spark332cdh │ │ └── scala │ │ │ └── com │ │ │ └── nvidia │ │ │ └── spark │ │ │ └── rapids │ │ │ └── shims │ │ │ ├── SparkShims.scala │ │ │ └── spark332cdh │ │ │ └── SparkShimServiceProvider.scala │ ├── spark332db │ │ └── scala │ │ │ ├── com │ │ │ └── nvidia │ │ │ │ └── spark │ │ │ │ └── rapids │ │ │ │ └── shims │ │ │ │ ├── CreateDataSourceTableAsSelectCommandMetaShims.scala │ │ │ │ ├── GpuBatchScanExec.scala │ │ │ │ ├── GpuFileFormatDataWriterShim.scala │ │ │ │ ├── GpuInsertIntoHiveTable.scala │ │ │ │ ├── GpuKnownNullable.scala │ │ │ │ ├── GpuOptimizedCreateHiveTableAsSelectCommandShims.scala │ │ │ │ ├── LogicalPlanShims.scala │ │ │ │ ├── Spark332PlusDBShims.scala │ │ │ │ ├── SparkShims.scala │ │ │ │ └── spark332db │ │ │ │ └── SparkShimServiceProvider.scala │ │ │ └── org │ │ │ └── apache │ │ │ └── spark │ │ │ └── sql │ │ │ ├── execution │ │ │ └── datasources │ │ │ │ └── GpuWriteFiles.scala │ │ │ ├── hive │ │ │ └── rapids │ │ │ │ └── shims │ │ │ │ ├── CreateFunctions.scala │ │ │ │ ├── GpuRowBasedHiveGenericUDFShim.scala │ │ │ │ ├── HiveFileUtil.scala │ │ │ │ └── HiveProviderCmdShims.scala │ │ │ └── rapids │ │ │ ├── GpuFileFormatWriter.scala │ │ │ └── shims │ │ │ ├── GpuCastToNumberErrorShim.scala │ │ │ ├── GpuCreateDataSourceTableAsSelectCommandShims.scala │ │ │ ├── GpuDataSource.scala │ │ │ ├── SchemaMetadataShims.scala │ │ │ ├── SchemaUtilsShims.scala │ │ │ ├── SparkDateTimeExceptionShims.scala │ │ │ └── SparkUpgradeExceptionShims.scala │ ├── spark333 │ │ └── scala │ │ │ └── com │ │ │ └── nvidia │ │ │ └── spark │ │ │ └── rapids │ │ │ └── shims │ │ │ └── spark333 │ │ │ └── SparkShimServiceProvider.scala │ ├── spark334 │ │ └── scala │ │ │ ├── com │ │ │ └── nvidia │ │ │ │ └── spark │ │ │ │ └── rapids │ │ │ │ └── shims │ │ │ │ ├── GetSequenceSize.scala │ │ │ │ └── spark334 │ │ │ │ └── SparkShimServiceProvider.scala │ │ │ └── org │ │ │ └── apache │ │ │ └── spark │ │ │ └── sql │ │ │ └── rapids │ │ │ └── shims │ │ │ ├── RapidsErrorUtils.scala │ │ │ └── SequenceSizeTooLongUnsuccessfulErrorBuilder.scala │ ├── spark340 │ │ └── scala │ │ │ ├── com │ │ │ └── nvidia │ │ │ │ └── spark │ │ │ │ └── rapids │ │ │ │ ├── shims │ │ │ │ ├── BatchScanExecMeta.scala │ │ │ │ ├── CastCheckShims.scala │ │ │ │ ├── ConvShim.scala │ │ │ │ ├── GlobalLimitShims.scala │ │ │ │ ├── GpuBatchScanExec.scala │ │ │ │ ├── GpuBroadcastJoinMeta.scala │ │ │ │ ├── KeyGroupedPartitioningShim.scala │ │ │ │ ├── OrcProtoWriterShim.scala │ │ │ │ ├── PartitionedFileUtilsShim.scala │ │ │ │ ├── PartitionedFileUtilsShimBase.scala │ │ │ │ ├── ShuffleOriginUtil.scala │ │ │ │ ├── Spark340PlusNonDBShims.scala │ │ │ │ ├── SparkShims.scala │ │ │ │ ├── TagScanForRuntimeFiltering.scala │ │ │ │ ├── parquet │ │ │ │ │ ├── ParquetLegacyNanoAsLongShims.scala │ │ │ │ │ ├── ParquetTimestampAnnotationShims.scala │ │ │ │ │ └── ParquetTimestampNTZShims.scala │ │ │ │ └── spark340 │ │ │ │ │ └── SparkShimServiceProvider.scala │ │ │ │ └── shuffle │ │ │ │ └── RapidsShuffleIterator.scala │ │ │ └── org │ │ │ └── apache │ │ │ └── spark │ │ │ └── sql │ │ │ ├── catalyst │ │ │ ├── csv │ │ │ │ └── GpuCsvUtils.scala │ │ │ └── json │ │ │ │ └── GpuJsonUtils.scala │ │ │ ├── errors │ │ │ └── ConvUtils.scala │ │ │ ├── execution │ │ │ └── datasources │ │ │ │ └── v2 │ │ │ │ └── rapids │ │ │ │ ├── GpuAtomicCreateTableAsSelectExec.scala │ │ │ │ └── GpuAtomicReplaceTableAsSelectExec.scala │ │ │ └── rapids │ │ │ ├── RapidsCachingReader.scala │ │ │ ├── execution │ │ │ ├── GpuBroadcastHashJoinExec.scala │ │ │ ├── GpuBroadcastNestedLoopJoinExec.scala │ │ │ └── ShimTrampolineUtil.scala │ │ │ └── shims │ │ │ ├── GpuJsonToStructsShim.scala │ │ │ ├── RapidsErrorUtils.scala │ │ │ └── RapidsErrorUtils340PlusBase.scala │ ├── spark341 │ │ └── scala │ │ │ └── com │ │ │ └── nvidia │ │ │ └── spark │ │ │ └── rapids │ │ │ └── shims │ │ │ └── spark341 │ │ │ └── SparkShimServiceProvider.scala │ ├── spark341db │ │ └── scala │ │ │ ├── com │ │ │ └── nvidia │ │ │ │ └── spark │ │ │ │ └── rapids │ │ │ │ └── shims │ │ │ │ ├── GpuAggregateInPandasExecMeta.scala │ │ │ │ ├── GpuToPrettyString.scala │ │ │ │ ├── GpuWindowGroupLimitExec.scala │ │ │ │ ├── PartitionedFileUtilsShim.scala │ │ │ │ ├── PlanShimsImpl.scala │ │ │ │ ├── PythonUDFShim.scala │ │ │ │ ├── Spark341PlusDBShims.scala │ │ │ │ ├── SparkShims.scala │ │ │ │ ├── StaticPartitionShims.scala │ │ │ │ └── spark341db │ │ │ │ └── SparkShimServiceProvider.scala │ │ │ └── org │ │ │ └── apache │ │ │ └── spark │ │ │ ├── rapids │ │ │ └── shims │ │ │ │ └── GpuShuffleExchangeExec.scala │ │ │ └── sql │ │ │ ├── execution │ │ │ ├── datasources │ │ │ │ └── v2 │ │ │ │ │ └── rapids │ │ │ │ │ ├── GpuAtomicCreateTableAsSelectExec.scala │ │ │ │ │ └── GpuAtomicReplaceTableAsSelectExec.scala │ │ │ └── rapids │ │ │ │ └── shims │ │ │ │ ├── FilePartitionShims.scala │ │ │ │ └── SplitFiles.scala │ │ │ ├── hive │ │ │ └── rapids │ │ │ │ └── shims │ │ │ │ ├── CreateFunctions.scala │ │ │ │ ├── FileSinkDescShim.scala │ │ │ │ └── HiveInspectorsShim.scala │ │ │ └── rapids │ │ │ ├── execution │ │ │ ├── ShuffleExchangeShim.scala │ │ │ └── python │ │ │ │ └── shims │ │ │ │ ├── GpuArrowPythonOutput.scala │ │ │ │ ├── GpuArrowPythonRunner.scala │ │ │ │ ├── GpuBasePythonRunner.scala │ │ │ │ ├── GpuCoGroupedArrowPythonRunner.scala │ │ │ │ ├── GpuGroupUDFArrowPythonRunner.scala │ │ │ │ └── GpuGroupedPythonRunnerFactory.scala │ │ │ └── shims │ │ │ ├── RapidsErrorUtils.scala │ │ │ └── RapidsErrorUtils341DBPlusBase.scala │ ├── spark342 │ │ └── scala │ │ │ ├── com │ │ │ └── nvidia │ │ │ │ └── spark │ │ │ │ └── rapids │ │ │ │ └── shims │ │ │ │ ├── DecimalMultiply128.scala │ │ │ │ └── spark342 │ │ │ │ └── SparkShimServiceProvider.scala │ │ │ └── org │ │ │ └── apache │ │ │ └── spark │ │ │ └── sql │ │ │ └── rapids │ │ │ └── shims │ │ │ └── RapidsErrorUtils.scala │ ├── spark343 │ │ └── scala │ │ │ └── com │ │ │ └── nvidia │ │ │ └── spark │ │ │ └── rapids │ │ │ └── shims │ │ │ └── spark343 │ │ │ └── SparkShimServiceProvider.scala │ ├── spark344 │ │ └── scala │ │ │ └── com │ │ │ └── nvidia │ │ │ └── spark │ │ │ └── rapids │ │ │ └── shims │ │ │ └── spark344 │ │ │ └── SparkShimServiceProvider.scala │ ├── spark350 │ │ └── scala │ │ │ ├── com │ │ │ └── nvidia │ │ │ │ └── spark │ │ │ │ └── rapids │ │ │ │ ├── GpuDeltaWrite.scala │ │ │ │ ├── GpuMergeRowsExecMeta.scala │ │ │ │ └── shims │ │ │ │ ├── BatchScanExecMeta.scala │ │ │ │ ├── BatchScanExecMetaBase.scala │ │ │ │ ├── ExternalSourceShim.scala │ │ │ │ ├── GpuIntervalUtils.scala │ │ │ │ ├── InMemoryTableScanUtils.scala │ │ │ │ ├── KeyGroupedPartitioningShim.scala │ │ │ │ ├── LegacyBehaviorPolicyShim.scala │ │ │ │ ├── NullOutputStreamShim.scala │ │ │ │ ├── PartitionedFileUtilsShim.scala │ │ │ │ ├── PythonMapInArrowExecShims.scala │ │ │ │ ├── Spark350PlusNonDBShims.scala │ │ │ │ ├── SparkShims.scala │ │ │ │ ├── spark350 │ │ │ │ └── SparkShimServiceProvider.scala │ │ │ │ └── v2WriteCommandMetasShim.scala │ │ │ └── org │ │ │ └── apache │ │ │ └── spark │ │ │ └── sql │ │ │ ├── catalyst │ │ │ └── GpuProjectingColumnarBatch.scala │ │ │ ├── execution │ │ │ ├── datasources │ │ │ │ ├── parquet │ │ │ │ │ └── rapids │ │ │ │ │ │ └── shims │ │ │ │ │ │ ├── ParquetCVShims.scala │ │ │ │ │ │ └── ShimVectorizedColumnReader.scala │ │ │ │ └── v2 │ │ │ │ │ ├── GpuMergeRowsExec.scala │ │ │ │ │ ├── WriteToDataSourceV2Exec.scala │ │ │ │ │ └── rapids │ │ │ │ │ ├── GpuAtomicCreateTableAsSelectExec.scala │ │ │ │ │ └── GpuAtomicReplaceTableAsSelectExec.scala │ │ │ └── rapids │ │ │ │ └── shims │ │ │ │ └── FilePartitionShims.scala │ │ │ └── rapids │ │ │ ├── execution │ │ │ └── GpuShuffleMeta.scala │ │ │ └── shims │ │ │ ├── ArrowUtilsShim.scala │ │ │ ├── DataTypeUtilsShim.scala │ │ │ ├── GpuMapInPandasExecMeta.scala │ │ │ ├── GpuPythonMapInArrowExecMeta.scala │ │ │ └── SchemaMetadataShims.scala │ ├── spark350db143 │ │ └── scala │ │ │ ├── com │ │ │ └── nvidia │ │ │ │ └── spark │ │ │ │ └── rapids │ │ │ │ ├── RapidsShuffleManager.scala │ │ │ │ └── shims │ │ │ │ ├── BatchScanExecMeta.scala │ │ │ │ ├── CastTimeToIntShim.scala │ │ │ │ ├── CudfUnsafeRow.scala │ │ │ │ ├── DeltaLakeUtils.scala │ │ │ │ ├── GpuBatchScanExec.scala │ │ │ │ ├── PartitionedFileUtilsShim.scala │ │ │ │ ├── PartitionedFileUtilsShimBase.scala │ │ │ │ ├── PythonMapInArrowExecShims.scala │ │ │ │ ├── RaiseErrorShim.scala │ │ │ │ ├── ShuffleManagerShimUtils.scala │ │ │ │ └── spark350db143 │ │ │ │ └── SparkShimServiceProvider.scala │ │ │ └── org │ │ │ └── apache │ │ │ └── spark │ │ │ ├── rapids │ │ │ └── shims │ │ │ │ └── GpuShuffleExchangeExec.scala │ │ │ └── sql │ │ │ ├── execution │ │ │ └── datasources │ │ │ │ └── parquet │ │ │ │ ├── RapidsVectorizedColumnReader.scala │ │ │ │ └── rapids │ │ │ │ └── shims │ │ │ │ ├── ShimParquetColumnVector.scala │ │ │ │ └── ShimVectorizedColumnReader.scala │ │ │ └── rapids │ │ │ ├── RapidsShuffleWriter.scala │ │ │ ├── execution │ │ │ ├── GpuSubqueryBroadcastMeta.scala │ │ │ └── python │ │ │ │ └── shims │ │ │ │ ├── PythonArgumentsUtils.scala │ │ │ │ └── WritePythonUDFUtils.scala │ │ │ └── shims │ │ │ ├── ArrayInvalidArgumentErrorUtils.scala │ │ │ ├── GpuPythonMapInArrowExec.scala │ │ │ ├── GpuPythonMapInArrowExecMeta.scala │ │ │ ├── RapidsErrorUtils.scala │ │ │ ├── SequenceSizeExceededLimitErrorBuilder.scala │ │ │ └── misc.scala │ ├── spark351 │ │ └── scala │ │ │ └── com │ │ │ └── nvidia │ │ │ └── spark │ │ │ └── rapids │ │ │ └── shims │ │ │ └── spark351 │ │ │ └── SparkShimServiceProvider.scala │ ├── spark352 │ │ └── scala │ │ │ └── com │ │ │ └── nvidia │ │ │ └── spark │ │ │ └── rapids │ │ │ └── shims │ │ │ ├── InMemoryTableScanExecLikeShim.scala │ │ │ ├── InMemoryTableScanUtils.scala │ │ │ └── spark352 │ │ │ └── SparkShimServiceProvider.scala │ ├── spark353 │ │ └── scala │ │ │ └── com │ │ │ └── nvidia │ │ │ └── spark │ │ │ └── rapids │ │ │ └── shims │ │ │ └── spark353 │ │ │ └── SparkShimServiceProvider.scala │ ├── spark354 │ │ └── scala │ │ │ └── com │ │ │ └── nvidia │ │ │ └── spark │ │ │ └── rapids │ │ │ └── shims │ │ │ └── spark354 │ │ │ └── SparkShimServiceProvider.scala │ ├── spark355 │ │ └── scala │ │ │ ├── com │ │ │ └── nvidia │ │ │ │ └── spark │ │ │ │ └── rapids │ │ │ │ └── shims │ │ │ │ ├── PartitionedFileUtilsShim.scala │ │ │ │ └── spark355 │ │ │ │ └── SparkShimServiceProvider.scala │ │ │ └── org │ │ │ └── apache │ │ │ └── spark │ │ │ └── sql │ │ │ └── execution │ │ │ └── rapids │ │ │ └── shims │ │ │ └── FilePartitionShims.scala │ ├── spark356 │ │ └── scala │ │ │ ├── com │ │ │ └── nvidia │ │ │ │ └── spark │ │ │ │ └── rapids │ │ │ │ └── shims │ │ │ │ └── spark356 │ │ │ │ └── SparkShimServiceProvider.scala │ │ │ └── org │ │ │ └── apache │ │ │ └── spark │ │ │ └── sql │ │ │ └── execution │ │ │ └── datasources │ │ │ └── v2 │ │ │ └── rapids │ │ │ ├── GpuAtomicCreateTableAsSelectExec.scala │ │ │ └── GpuAtomicReplaceTableAsSelectExec.scala │ ├── spark357 │ │ └── scala │ │ │ └── com │ │ │ └── nvidia │ │ │ └── spark │ │ │ └── rapids │ │ │ └── shims │ │ │ └── spark357 │ │ │ └── SparkShimServiceProvider.scala │ ├── spark400 │ │ └── scala │ │ │ ├── com │ │ │ └── nvidia │ │ │ │ └── spark │ │ │ │ └── rapids │ │ │ │ └── shims │ │ │ │ ├── CudfUnsafeRow.scala │ │ │ │ ├── DateTimeUtilsShims.scala │ │ │ │ ├── GetJsonObjectShim.scala │ │ │ │ ├── GpuOrcDataReader.scala │ │ │ │ ├── LogicalPlanShims.scala │ │ │ │ ├── MapInArrowExecShims.scala │ │ │ │ ├── NullIntolerantShim.scala │ │ │ │ ├── OperatorsUtilShims.scala │ │ │ │ ├── PartitionedFileUtilsShim.scala │ │ │ │ ├── Spark400PlusCommonShims.scala │ │ │ │ ├── SparkShims.scala │ │ │ │ └── spark400 │ │ │ │ └── SparkShimServiceProvider.scala │ │ │ └── org │ │ │ └── apache │ │ │ └── spark │ │ │ └── sql │ │ │ ├── execution │ │ │ ├── datasources │ │ │ │ └── v2 │ │ │ │ │ └── rapids │ │ │ │ │ ├── GpuAtomicCreateTableAsSelectExec.scala │ │ │ │ │ └── GpuAtomicReplaceTableAsSelectExec.scala │ │ │ └── rapids │ │ │ │ └── shims │ │ │ │ └── FilePartitionShims.scala │ │ │ ├── hive │ │ │ └── rapids │ │ │ │ └── shims │ │ │ │ └── CommandUtilsShim.scala │ │ │ ├── nvidia │ │ │ └── DFUDFShims.scala │ │ │ └── rapids │ │ │ ├── execution │ │ │ ├── GpuSubqueryBroadcastMeta.scala │ │ │ └── python │ │ │ │ └── shims │ │ │ │ ├── GpuBasePythonRunner.scala │ │ │ │ └── WritePythonUDFUtils.scala │ │ │ └── shims │ │ │ ├── GpuMapInArrowExecMeta.scala │ │ │ ├── InvokeExprMeta.scala │ │ │ ├── RapidsErrorUtils.scala │ │ │ ├── SparkSessionUtils.scala │ │ │ └── TrampolineConnectShims.scala │ └── spark401 │ │ └── scala │ │ └── com │ │ └── nvidia │ │ └── spark │ │ └── rapids │ │ └── shims │ │ ├── SparkShims.scala │ │ └── spark401 │ │ └── SparkShimServiceProvider.scala │ └── test │ ├── resources │ ├── log4j.properties │ └── log4j2.properties │ ├── scala │ └── com │ │ └── nvidia │ │ └── spark │ │ └── rapids │ │ ├── ArmSuite.scala │ │ ├── AssertUtilsVerificationSuite.scala │ │ ├── FQSuiteName.scala │ │ ├── GpuDeviceManagerSuite.scala │ │ ├── GpuMetricsSuite.scala │ │ ├── HostAllocSuite.scala │ │ ├── RangeConfMatcherSuite.scala │ │ ├── ThreadFactoryBuilderTest.scala │ │ └── io │ │ └── async │ │ ├── AsyncOutputStreamSuite.scala │ │ ├── ThrottlingExecutorSuite.scala │ │ └── TrafficControllerSuite.scala │ ├── spark320 │ └── scala │ │ └── com │ │ └── nvidia │ │ └── spark │ │ └── rapids │ │ └── shims │ │ └── spark320 │ │ └── SparkShimsSuite.scala │ ├── spark321 │ └── scala │ │ └── com │ │ └── nvidia │ │ └── spark │ │ └── rapids │ │ └── shims │ │ └── spark321 │ │ └── SparkShimsSuite.scala │ ├── spark321cdh │ └── scala │ │ └── com │ │ └── nvidia │ │ └── spark │ │ └── rapids │ │ └── shims │ │ └── spark321cdh │ │ └── SparkShimsSuite.scala │ ├── spark322 │ └── scala │ │ └── com │ │ └── nvidia │ │ └── spark │ │ └── rapids │ │ └── shims │ │ └── spark322 │ │ └── SparkShimsSuite.scala │ ├── spark323 │ └── scala │ │ └── com │ │ └── nvidia │ │ └── spark │ │ └── rapids │ │ └── shims │ │ └── spark323 │ │ └── SparkShimsSuite.scala │ ├── spark324 │ └── scala │ │ └── com │ │ └── nvidia │ │ └── spark │ │ └── rapids │ │ └── shims │ │ └── spark324 │ │ └── SparkShimsSuite.scala │ ├── spark330 │ └── scala │ │ └── com │ │ └── nvidia │ │ └── spark │ │ └── rapids │ │ └── shims │ │ └── spark330 │ │ └── SparkShimsSuite.scala │ ├── spark330cdh │ └── scala │ │ └── com │ │ └── nvidia │ │ └── spark │ │ └── rapids │ │ └── shims │ │ └── spark330cdh │ │ └── SparkShimsSuite.scala │ ├── spark331 │ └── scala │ │ └── com │ │ └── nvidia │ │ └── spark │ │ └── rapids │ │ └── shims │ │ └── spark331 │ │ └── SparkShimsSuite.scala │ ├── spark332 │ └── scala │ │ └── com │ │ └── nvidia │ │ └── spark │ │ └── rapids │ │ └── shims │ │ └── spark332 │ │ └── SparkShimsSuite.scala │ ├── spark332cdh │ └── scala │ │ └── com │ │ └── nvidia │ │ └── spark │ │ └── rapids │ │ └── shims │ │ └── spark332cdh │ │ └── SparkShimsSuite.scala │ ├── spark333 │ └── scala │ │ └── com │ │ └── nvidia │ │ └── spark │ │ └── rapids │ │ └── shims │ │ └── spark333 │ │ └── SparkShimsSuite.scala │ ├── spark334 │ └── scala │ │ └── com │ │ └── nvidia │ │ └── spark │ │ └── rapids │ │ └── shims │ │ └── spark334 │ │ └── SparkShimsSuite.scala │ ├── spark340 │ └── scala │ │ └── com │ │ └── nvidia │ │ └── spark │ │ └── rapids │ │ └── shims │ │ └── spark340 │ │ └── SparkShimsSuite.scala │ ├── spark341 │ └── scala │ │ └── com │ │ └── nvidia │ │ └── spark │ │ └── rapids │ │ └── shims │ │ └── spark341 │ │ └── SparkShimsSuite.scala │ ├── spark342 │ └── scala │ │ └── com │ │ └── nvidia │ │ └── spark │ │ └── rapids │ │ └── shims │ │ └── spark342 │ │ └── SparkShimsSuite.scala │ ├── spark343 │ └── scala │ │ └── com │ │ └── nvidia │ │ └── spark │ │ └── rapids │ │ └── shims │ │ └── spark343 │ │ └── SparkShimsSuite.scala │ ├── spark344 │ └── scala │ │ └── com │ │ └── nvidia │ │ └── spark │ │ └── rapids │ │ └── shims │ │ └── spark344 │ │ └── SparkShimsSuite.scala │ ├── spark350 │ └── scala │ │ └── com │ │ └── nvidia │ │ └── spark │ │ └── rapids │ │ └── shims │ │ └── spark350 │ │ └── SparkShimsSuite.scala │ ├── spark351 │ └── scala │ │ └── com │ │ └── nvidia │ │ └── spark │ │ └── rapids │ │ └── shims │ │ └── spark351 │ │ └── SparkShimsSuite.scala │ ├── spark352 │ └── scala │ │ └── com │ │ └── nvidia │ │ └── spark │ │ └── rapids │ │ └── shims │ │ └── spark352 │ │ └── SparkShimsSuite.scala │ ├── spark353 │ └── scala │ │ └── com │ │ └── nvidia │ │ └── spark │ │ └── rapids │ │ └── shims │ │ └── spark353 │ │ └── SparkShimsSuite.scala │ ├── spark354 │ └── scala │ │ └── com │ │ └── nvidia │ │ └── spark │ │ └── rapids │ │ └── shims │ │ └── spark354 │ │ └── SparkShimsSuite.scala │ ├── spark355 │ └── scala │ │ └── com │ │ └── nvidia │ │ └── spark │ │ └── rapids │ │ └── shims │ │ └── spark355 │ │ └── SparkShimsSuite.scala │ ├── spark356 │ └── scala │ │ └── com │ │ └── nvidia │ │ └── spark │ │ └── rapids │ │ └── shims │ │ └── spark356 │ │ └── SparkShimsSuite.scala │ ├── spark357 │ └── scala │ │ └── com │ │ └── nvidia │ │ └── spark │ │ └── rapids │ │ └── shims │ │ └── spark357 │ │ └── SparkShimsSuite.scala │ ├── spark400 │ └── scala │ │ └── com │ │ └── nvidia │ │ └── spark │ │ └── rapids │ │ └── shims │ │ └── spark400 │ │ └── SparkShimsSuite.scala │ └── spark401 │ └── scala │ └── com │ └── nvidia │ └── spark │ └── rapids │ └── shims │ └── spark401 │ └── SparkShimsSuite.scala ├── tests ├── README.md ├── pom.xml └── src │ └── test │ ├── java │ └── com │ │ └── nvidia │ │ └── spark │ │ └── rapids │ │ ├── TestHashedPriorityQueue.java │ │ └── TestStats.java │ ├── resources │ ├── dates.csv │ ├── day-time-interval-to-be-fix.csv │ ├── day-time-interval.csv │ ├── decimal-test-legacy.parquet │ ├── decimal-test.csv │ ├── decimal-test.orc │ ├── decimal-test.parquet │ ├── disorder-read-schema.parquet │ ├── file-splits.orc │ ├── file-splits.parquet │ ├── floats.csv │ ├── hybrid-Julian-calendar.orc │ ├── ints.csv │ ├── log4j.properties │ ├── log4j2.properties │ ├── lots_o_longs.csv │ ├── map_of_strings.snappy.parquet │ ├── mixed-types.csv │ ├── nested-unsigned-malformed.parquet │ ├── nested-unsigned.parquet │ ├── nullable_floats.csv │ ├── partitioned-csv │ │ ├── partKey=100 │ │ │ └── part-00000-e2c10641-1db9-47a3-be72-a1a5e94f63c6.c000.csv │ │ └── partKey=102 │ │ │ └── part-00000-e2c10641-1db9-47a3-be72-a1a5e94f63c6.c000.csv │ ├── partitioned-parquet │ │ ├── partKey=100 │ │ │ └── part-00000-7404bd47-cd68-43cf-b78e-5f1c5fba912d.c000.snappy.parquet │ │ └── partKey=102 │ │ │ └── part-00000-7404bd47-cd68-43cf-b78e-5f1c5fba912d.c000.snappy.parquet │ ├── schema-can-prune.orc │ ├── schema-cant-prune.orc │ ├── shorts.csv │ ├── strings.csv │ ├── test.csv │ ├── test_unsigned64.parquet │ ├── test_withheaders.csv │ ├── timestamp-date-test-msec.parquet │ ├── timestamp-date-test.parquet │ ├── timestamps.csv │ ├── very_large_longs.csv │ ├── window-function-test-nonull.orc │ └── window-function-test.orc │ ├── scala │ ├── com │ │ └── nvidia │ │ │ └── spark │ │ │ └── rapids │ │ │ ├── AdaptiveQueryExecSuite.scala │ │ │ ├── AnsiCastOpSuite.scala │ │ │ ├── ApproximatePercentileSuite.scala │ │ │ ├── AstUtilSuite.scala │ │ │ ├── BatchWithPartitionDataSuite.scala │ │ │ ├── BroadcastHashJoinSuite.scala │ │ │ ├── BroadcastNestedLoopJoinSuite.scala │ │ │ ├── CachedBatchWriterSuite.scala │ │ │ ├── CastOpSuite.scala │ │ │ ├── CollectionOpSuite.scala │ │ │ ├── ColumnToRowIteratorRetrySuite.scala │ │ │ ├── ConditionalsSuite.scala │ │ │ ├── CostBasedOptimizerSuite.scala │ │ │ ├── CsvScanRetrySuite.scala │ │ │ ├── CsvScanSuite.scala │ │ │ ├── CudfTestHelper.scala │ │ │ ├── DecimalBinaryOpSuite.scala │ │ │ ├── DeviceMemoryEventHandlerSuite.scala │ │ │ ├── DistributionSuite.scala │ │ │ ├── DumpUtilsSuite.scala │ │ │ ├── ExpandExecSuite.scala │ │ │ ├── FilterExprSuite.scala │ │ │ ├── FunSuiteWithTempDir.scala │ │ │ ├── FuzzerUtils.scala │ │ │ ├── GeneratedInternalRowToCudfRowIteratorRetrySuite.scala │ │ │ ├── GpuArchitectureTestSuite.scala │ │ │ ├── GpuBatchUtilsSuite.scala │ │ │ ├── GpuBringBackToHostSuite.scala │ │ │ ├── GpuCoalesceBatchesRetrySuite.scala │ │ │ ├── GpuCoalesceBatchesSuite.scala │ │ │ ├── GpuColumnarToRowSuite.scala │ │ │ ├── GpuCoreDumpHandlerSuite.scala │ │ │ ├── GpuDeviceManagerSuite.scala │ │ │ ├── GpuExpressionTestSuite.scala │ │ │ ├── GpuFileScanPrunePartitionSuite.scala │ │ │ ├── GpuGenerateSuite.scala │ │ │ ├── GpuKryoRegistratorSuite.scala │ │ │ ├── GpuMultiFileReaderSuite.scala │ │ │ ├── GpuPartitioningSuite.scala │ │ │ ├── GpuReaderTypeSuites.scala │ │ │ ├── GpuSemaphoreSuite.scala │ │ │ ├── GpuShuffleCoalesceSuite.scala │ │ │ ├── GpuShuffledHashJoinExecSuite.scala │ │ │ ├── GpuSinglePartitioningSuite.scala │ │ │ ├── GpuSortRetrySuite.scala │ │ │ ├── GpuSubPartitionSuite.scala │ │ │ ├── GpuUnitTests.scala │ │ │ ├── HashAggregateRetrySuite.scala │ │ │ ├── HashAggregatesSuite.scala │ │ │ ├── HashSortOptimizeSuite.scala │ │ │ ├── HiveHashTestSuite.scala │ │ │ ├── HostColumnToGpuRetrySuite.scala │ │ │ ├── ImplicitsTestSuite.scala │ │ │ ├── InsertPartitionSuite.scala │ │ │ ├── JoinsSuite.scala │ │ │ ├── JsonScanRetrySuite.scala │ │ │ ├── KnownNotNullSuite.scala │ │ │ ├── KudoGpuSerializerRetrySuite.scala │ │ │ ├── LimitExecSuite.scala │ │ │ ├── LimitRetrySuite.scala │ │ │ ├── LogOperatorUnitTestSuite.scala │ │ │ ├── MetaUtilsSuite.scala │ │ │ ├── MetricsEventLogValidationSuite.scala │ │ │ ├── NonDeterministicRetrySuite.scala │ │ │ ├── OrcQuerySuite.scala │ │ │ ├── OrcScanSuite.scala │ │ │ ├── OrcSuite.scala │ │ │ ├── ParquetCompressionCodecSuite.scala │ │ │ ├── ParquetFieldIdSuite.scala │ │ │ ├── ParquetQuerySuite.scala │ │ │ ├── ParquetScaleTestSuite.scala │ │ │ ├── ParquetScaleTestUtils.scala │ │ │ ├── ParquetScanSuite.scala │ │ │ ├── ParquetWriterSuite.scala │ │ │ ├── ParseDateTimeSuite.scala │ │ │ ├── PrioritySemaphoreSuite.scala │ │ │ ├── RangeRetrySuite.scala │ │ │ ├── RapidsExecutorPluginSuite.scala │ │ │ ├── RapidsHostColumnBuilderSuite.scala │ │ │ ├── RebaseHelperSuite.scala │ │ │ ├── RegularExpressionParserSuite.scala │ │ │ ├── RegularExpressionRewriteSuite.scala │ │ │ ├── RegularExpressionSuite.scala │ │ │ ├── RegularExpressionTranspilerSuite.scala │ │ │ ├── ResourceBoundedExecutorSuite.scala │ │ │ ├── ReusedExchangeFixupSuite.scala │ │ │ ├── RmmSparkRetrySuiteBase.scala │ │ │ ├── RowBasedUDFSuite.scala │ │ │ ├── RowToColumnarIteratorRetrySuite.scala │ │ │ ├── ScalaUDFSuite.scala │ │ │ ├── ScalableTaskCompletionSuite.scala │ │ │ ├── ScalarSubquerySuite.scala │ │ │ ├── SerializationSuite.scala │ │ │ ├── ShuffleBufferCatalogSuite.scala │ │ │ ├── ShufflePartitionerRetrySuite.scala │ │ │ ├── SlowFileSystem.scala │ │ │ ├── SortExecSuite.scala │ │ │ ├── SparkQueryCompareTestSuite.scala │ │ │ ├── StringFunctionSuite.scala │ │ │ ├── TestUtils.scala │ │ │ ├── TimeOperatorsSuite.scala │ │ │ ├── UnaryOperatorsSuite.scala │ │ │ ├── WindowFunctionSuite.scala │ │ │ ├── WindowRetrySuite.scala │ │ │ ├── WithRetrySuite.scala │ │ │ ├── hybrid │ │ │ └── HostRetryAllocatorTest.scala │ │ │ ├── lore │ │ │ ├── GpuLoreSuite.scala │ │ │ └── OutputLoreIdSuite.scala │ │ │ ├── shuffle │ │ │ ├── RapidsShuffleClientSuite.scala │ │ │ ├── RapidsShuffleHeartbeatManagerSuite.scala │ │ │ ├── RapidsShuffleIteratorSuite.scala │ │ │ ├── RapidsShuffleServerSuite.scala │ │ │ ├── UCXConnectionSuite.scala │ │ │ └── WindowedBlockIteratorSuite.scala │ │ │ ├── spill │ │ │ └── SpillFrameworkSuite.scala │ │ │ ├── tests │ │ │ ├── CacheTestSuite.scala │ │ │ └── udf │ │ │ │ └── scala │ │ │ │ ├── AlwaysTrueUDF.scala │ │ │ │ ├── URLDecode.scala │ │ │ │ └── URLEncode.scala │ │ │ ├── timezone │ │ │ ├── TimeZonePerfSuite.scala │ │ │ └── TimeZoneSuite.scala │ │ │ ├── unit │ │ │ ├── ComplexCreatorSizeEstimationTest.scala │ │ │ ├── DateTimeUnitTest.scala │ │ │ ├── DecimalUnitTest.scala │ │ │ ├── GpuScalarUnitTest.scala │ │ │ ├── LiteralSizeEstimationTest.scala │ │ │ └── StringRepeatUnitTest.scala │ │ │ └── window │ │ │ └── GpuUnboundedToUnboundedAggWindowSuite.scala │ └── org │ │ └── apache │ │ └── spark │ │ └── sql │ │ ├── FileUtils.scala │ │ ├── GpuSparkPlanSuite.scala │ │ ├── rapids │ │ ├── BroadcastLocalPropertySuite.scala │ │ ├── CanonicalizeSuite.scala │ │ ├── GpuFileFormatDataWriterSuite.scala │ │ ├── MyDenseVectorUDT.scala │ │ ├── OrcFilterSuite.scala │ │ ├── ParquetFilterSuite.scala │ │ ├── ParquetFormatScanSuite.scala │ │ ├── ProjectExprSuite.scala │ │ ├── SpillableColumnarBatchSuite.scala │ │ ├── TestTrampolineUtil.scala │ │ ├── TestingUDT.scala │ │ ├── catalyst │ │ │ └── expressions │ │ │ │ └── GpuEquivalentExpressionsSuite.scala │ │ ├── execution │ │ │ ├── InternalColumnarRDDConverterSuite.scala │ │ │ └── python │ │ │ │ └── GpuPythonHelperSuite.scala │ │ ├── filecache │ │ │ ├── FileCacheIntegrationSuite.scala │ │ │ └── NoFileCacheIntegrationSuite.scala │ │ └── metrics │ │ │ └── source │ │ │ └── MockTaskContext.scala │ │ └── timezone │ │ └── TimeZonePerfUtils.scala │ ├── spark320 │ └── scala │ │ └── com │ │ └── nvidia │ │ └── spark │ │ └── rapids │ │ ├── ConcurrentWriterMetricsSuite.scala │ │ ├── shims │ │ └── OrcStatisticShim.scala │ │ └── shuffle │ │ └── RapidsShuffleTestHelper.scala │ ├── spark321 │ └── scala │ │ ├── com │ │ └── nvidia │ │ │ └── spark │ │ │ └── rapids │ │ │ ├── DynamicPruningSuite.scala │ │ │ └── OrcEncryptionSuite.scala │ │ └── org │ │ └── apache │ │ └── spark │ │ └── sql │ │ └── rapids │ │ ├── RapidsShuffleThreadedReaderSuite.scala │ │ └── RapidsShuffleThreadedWriterSuite.scala │ ├── spark321cdh │ └── scala │ │ └── com │ │ └── nvidia │ │ └── spark │ │ └── rapids │ │ └── shims │ │ └── OrcStatisticShim.scala │ ├── spark330 │ └── scala │ │ ├── com │ │ └── nvidia │ │ │ └── spark │ │ │ └── rapids │ │ │ ├── BloomFilterAggregateQuerySuite.scala │ │ │ ├── CsvScanForIntervalSuite.scala │ │ │ ├── GpuIntervalUtilsTest.scala │ │ │ ├── IntervalArithmeticSuite.scala │ │ │ ├── IntervalCastSuite.scala │ │ │ ├── IntervalDivisionSuite.scala │ │ │ ├── IntervalMultiplySuite.scala │ │ │ ├── IntervalSuite.scala │ │ │ ├── ParquetUDTSuite.scala │ │ │ ├── SampleSuite.scala │ │ │ └── TimestampSuite.scala │ │ └── org │ │ └── apache │ │ └── spark │ │ └── sql │ │ └── rapids │ │ ├── GpuInSubqueryExecSuite.scala │ │ ├── suites │ │ ├── RapidsApproximatePercentileSuite.scala │ │ ├── RapidsCSVInferSchemaSuite.scala │ │ ├── RapidsCSVSuite.scala │ │ ├── RapidsCastSuite.scala │ │ ├── RapidsComplexTypesSuite.scala │ │ ├── RapidsCsvExpressionsSuite.scala │ │ ├── RapidsCsvFunctionsSuite.scala │ │ ├── RapidsDataFrameAggregateSuite.scala │ │ ├── RapidsDataFrameComplexTypeSuite.scala │ │ ├── RapidsDataFrameNaFunctionsSuite.scala │ │ ├── RapidsDataFramePivotSuite.scala │ │ ├── RapidsDataFrameSetOperationsSuite.scala │ │ ├── RapidsDataFrameWindowFunctionsSuite.scala │ │ ├── RapidsDateExpressionsSuite.scala │ │ ├── RapidsDecimalExpressionSuite.scala │ │ ├── RapidsFirstLastTestSuite.scala │ │ ├── RapidsGeneratorFunctionSuite.scala │ │ ├── RapidsHashedRelationSuite.scala │ │ ├── RapidsHistogramNumericSuite.scala │ │ ├── RapidsInnerJoinSuite.scala │ │ ├── RapidsIntervalFunctionsSuite.scala │ │ ├── RapidsJsonExpressionsSuite.scala │ │ ├── RapidsJsonFunctionsSuite.scala │ │ ├── RapidsJsonSuite.scala │ │ ├── RapidsMathExpressionsSuite.scala │ │ ├── RapidsMathFunctionsSuite.scala │ │ ├── RapidsMiscFunctionsSuite.scala │ │ ├── RapidsOuterJoinSuite.scala │ │ ├── RapidsParquetAvroCompatibilitySuite.scala │ │ ├── RapidsParquetColumnIndexSuite.scala │ │ ├── RapidsParquetCompressionCodecPrecedenceSuite.scala │ │ ├── RapidsParquetDeltaByteArrayEncodingSuite.scala │ │ ├── RapidsParquetDeltaEncodingSuite.scala │ │ ├── RapidsParquetDeltaLengthByteArrayEncodingSuite.scala │ │ ├── RapidsParquetEncodingSuite.scala │ │ ├── RapidsParquetFieldIdIOSuite.scala │ │ ├── RapidsParquetFieldIdSchemaSuite.scala │ │ ├── RapidsParquetFileFormatSuite.scala │ │ ├── RapidsParquetInteroperabilitySuite.scala │ │ ├── RapidsParquetPartitionDiscoverySuite.scala │ │ ├── RapidsParquetProtobufCompatibilitySuite.scala │ │ ├── RapidsParquetQuerySuite.scala │ │ ├── RapidsParquetRebaseDatetimeSuite.scala │ │ ├── RapidsParquetSchemaPruningSuite.scala │ │ ├── RapidsParquetSchemaSuite.scala │ │ ├── RapidsParquetThriftCompatibilitySuite.scala │ │ ├── RapidsParquetVectorizedSuite.scala │ │ ├── RapidsPercentileSuite.scala │ │ ├── RapidsProductAggSuite.scala │ │ ├── RapidsRandomSuite.scala │ │ ├── RapidsReadSchemaSuite.scala │ │ ├── RapidsRegexpExpressionsSuite.scala │ │ ├── RapidsStringExpressionsSuite.scala │ │ └── RapidsStringFunctionsSuite.scala │ │ └── utils │ │ ├── BackendTestSettings.scala │ │ ├── RapidsJsonConfTrait.scala │ │ ├── RapidsSQLTestsBaseTrait.scala │ │ ├── RapidsSQLTestsTrait.scala │ │ ├── RapidsTestConstants.scala │ │ ├── RapidsTestSettings.scala │ │ ├── RapidsTestsBaseTrait.scala │ │ ├── RapidsTestsCommonTrait.scala │ │ └── RapidsTestsTrait.scala │ ├── spark340 │ └── scala │ │ └── com │ │ └── nvidia │ │ └── spark │ │ └── rapids │ │ └── shuffle │ │ └── RapidsShuffleTestHelper.scala │ ├── spark341db │ └── scala │ │ └── com │ │ └── nvidia │ │ └── spark │ │ └── rapids │ │ └── ToPrettyStringSuite.scala │ └── spark350 │ └── scala │ ├── com │ └── nvidia │ │ └── spark │ │ └── rapids │ │ └── iceberg │ │ ├── GpuIcebergPartitionerSuite.scala │ │ ├── data │ │ └── GpuDeleteFilterSuite.scala │ │ └── datagen.scala │ └── org │ └── apache │ ├── iceberg │ └── spark │ │ └── functions │ │ └── GpuBucketExpressionSuite.scala │ └── spark │ └── sql │ └── rapids │ └── GpuCreateDataSourceTableAsSelectCommandSuite.scala ├── tools ├── .gitignore ├── generated_files │ ├── 320 │ │ ├── operatorsScore.csv │ │ ├── supportedDataSource.csv │ │ ├── supportedExecs.csv │ │ └── supportedExprs.csv │ ├── 321 │ │ ├── operatorsScore.csv │ │ ├── supportedDataSource.csv │ │ ├── supportedExecs.csv │ │ └── supportedExprs.csv │ ├── 322 │ │ ├── operatorsScore.csv │ │ ├── supportedDataSource.csv │ │ ├── supportedExecs.csv │ │ └── supportedExprs.csv │ ├── 323 │ │ ├── operatorsScore.csv │ │ ├── supportedDataSource.csv │ │ ├── supportedExecs.csv │ │ └── supportedExprs.csv │ ├── 324 │ │ ├── operatorsScore.csv │ │ ├── supportedDataSource.csv │ │ ├── supportedExecs.csv │ │ └── supportedExprs.csv │ ├── 330 │ │ ├── operatorsScore.csv │ │ ├── supportedDataSource.csv │ │ ├── supportedExecs.csv │ │ └── supportedExprs.csv │ ├── 331 │ │ ├── operatorsScore.csv │ │ ├── supportedDataSource.csv │ │ ├── supportedExecs.csv │ │ └── supportedExprs.csv │ ├── 332 │ │ ├── operatorsScore.csv │ │ ├── supportedDataSource.csv │ │ ├── supportedExecs.csv │ │ └── supportedExprs.csv │ ├── 333 │ │ ├── operatorsScore.csv │ │ ├── supportedDataSource.csv │ │ ├── supportedExecs.csv │ │ └── supportedExprs.csv │ ├── 334 │ │ ├── operatorsScore.csv │ │ ├── supportedDataSource.csv │ │ ├── supportedExecs.csv │ │ └── supportedExprs.csv │ ├── 340 │ │ ├── operatorsScore.csv │ │ ├── supportedDataSource.csv │ │ ├── supportedExecs.csv │ │ └── supportedExprs.csv │ ├── 341 │ │ ├── operatorsScore.csv │ │ ├── supportedDataSource.csv │ │ ├── supportedExecs.csv │ │ └── supportedExprs.csv │ ├── 342 │ │ ├── operatorsScore.csv │ │ ├── supportedDataSource.csv │ │ ├── supportedExecs.csv │ │ └── supportedExprs.csv │ ├── 343 │ │ ├── operatorsScore.csv │ │ ├── supportedDataSource.csv │ │ ├── supportedExecs.csv │ │ └── supportedExprs.csv │ ├── 344 │ │ ├── operatorsScore.csv │ │ ├── supportedDataSource.csv │ │ ├── supportedExecs.csv │ │ └── supportedExprs.csv │ ├── 350 │ │ ├── operatorsScore.csv │ │ ├── supportedDataSource.csv │ │ ├── supportedExecs.csv │ │ └── supportedExprs.csv │ ├── 351 │ │ ├── operatorsScore.csv │ │ ├── supportedDataSource.csv │ │ ├── supportedExecs.csv │ │ └── supportedExprs.csv │ ├── 352 │ │ ├── operatorsScore.csv │ │ ├── supportedDataSource.csv │ │ ├── supportedExecs.csv │ │ └── supportedExprs.csv │ ├── 353 │ │ ├── operatorsScore.csv │ │ ├── supportedDataSource.csv │ │ ├── supportedExecs.csv │ │ └── supportedExprs.csv │ ├── 354 │ │ ├── operatorsScore.csv │ │ ├── supportedDataSource.csv │ │ ├── supportedExecs.csv │ │ └── supportedExprs.csv │ ├── 355 │ │ ├── operatorsScore.csv │ │ ├── supportedDataSource.csv │ │ ├── supportedExecs.csv │ │ └── supportedExprs.csv │ ├── 356 │ │ ├── operatorsScore.csv │ │ ├── supportedDataSource.csv │ │ ├── supportedExecs.csv │ │ └── supportedExprs.csv │ ├── 400 │ │ ├── operatorsScore.csv │ │ ├── supportedDataSource.csv │ │ ├── supportedExecs.csv │ │ └── supportedExprs.csv │ ├── 401 │ │ ├── operatorsScore.csv │ │ ├── supportedDataSource.csv │ │ ├── supportedExecs.csv │ │ └── supportedExprs.csv │ ├── 321cdh │ │ ├── operatorsScore.csv │ │ ├── supportedDataSource.csv │ │ ├── supportedExecs.csv │ │ └── supportedExprs.csv │ ├── 330cdh │ │ ├── operatorsScore.csv │ │ ├── supportedDataSource.csv │ │ ├── supportedExecs.csv │ │ └── supportedExprs.csv │ ├── 332cdh │ │ ├── operatorsScore.csv │ │ ├── supportedDataSource.csv │ │ ├── supportedExecs.csv │ │ └── supportedExprs.csv │ ├── 350db143 │ │ └── supportedDataSource.csv │ ├── operatorsScore.csv │ ├── supportedDataSource.csv │ ├── supportedExecs.csv │ └── supportedExprs.csv └── pom.xml └── udf-compiler ├── README.md ├── pom.xml └── src ├── main ├── scala-2.12 │ └── com │ │ └── nvidia │ │ └── spark │ │ └── udf │ │ └── Instruction.scala ├── scala-2.13 │ └── com │ │ └── nvidia │ │ └── spark │ │ └── udf │ │ └── Instruction.scala └── scala │ └── com │ └── nvidia │ └── spark │ └── udf │ ├── CFG.scala │ ├── CatalystExpressionBuilder.scala │ ├── GpuScalaUDF.scala │ ├── LambdaReflection.scala │ ├── LogicalPlanRules.scala │ └── State.scala └── test ├── resources ├── log4j.properties └── log4j2.properties └── scala └── com └── nvidia └── spark └── OpcodeSuite.scala /.github/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/.github/404.html -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/.github/ISSUE_TEMPLATE/documentation-request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/submit-question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/.github/ISSUE_TEMPLATE/submit-question.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/codecov.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/.github/codecov.yaml -------------------------------------------------------------------------------- /.github/workflows/add-to-project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/.github/workflows/add-to-project.yml -------------------------------------------------------------------------------- /.github/workflows/auto-merge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/.github/workflows/auto-merge.yml -------------------------------------------------------------------------------- /.github/workflows/blossom-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/.github/workflows/blossom-ci.yml -------------------------------------------------------------------------------- /.github/workflows/license-header-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/.github/workflows/license-header-check.yml -------------------------------------------------------------------------------- /.github/workflows/markdown-links-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/.github/workflows/markdown-links-check.yml -------------------------------------------------------------------------------- /.github/workflows/markdown-links-check/markdown-links-check-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/.github/workflows/markdown-links-check/markdown-links-check-config.json -------------------------------------------------------------------------------- /.github/workflows/mvn-verify-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/.github/workflows/mvn-verify-check.yml -------------------------------------------------------------------------------- /.github/workflows/mvn-verify-check/get-deps-sha1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/.github/workflows/mvn-verify-check/get-deps-sha1.sh -------------------------------------------------------------------------------- /.github/workflows/mvn-verify-check/populate-daily-cache.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/.github/workflows/mvn-verify-check/populate-daily-cache.sh -------------------------------------------------------------------------------- /.github/workflows/pr-description-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/.github/workflows/pr-description-check.yml -------------------------------------------------------------------------------- /.github/workflows/shell-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/.github/workflows/shell-check.yml -------------------------------------------------------------------------------- /.github/workflows/signoff-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/.github/workflows/signoff-check.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/.gitmodules -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DF_UDF_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/DF_UDF_README.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/NOTICE -------------------------------------------------------------------------------- /NOTICE-binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/NOTICE-binary -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/SECURITY.md -------------------------------------------------------------------------------- /aggregator/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/aggregator/pom.xml -------------------------------------------------------------------------------- /api_validation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/api_validation/README.md -------------------------------------------------------------------------------- /api_validation/auditAllVersions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/api_validation/auditAllVersions.sh -------------------------------------------------------------------------------- /api_validation/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/api_validation/pom.xml -------------------------------------------------------------------------------- /api_validation/src/main/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/api_validation/src/main/resources/log4j.properties -------------------------------------------------------------------------------- /datagen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/datagen/README.md -------------------------------------------------------------------------------- /datagen/ScaleTest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/datagen/ScaleTest.md -------------------------------------------------------------------------------- /datagen/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/datagen/pom.xml -------------------------------------------------------------------------------- /delta-lake/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/delta-lake/README.md -------------------------------------------------------------------------------- /delta-lake/delta-20x/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/delta-lake/delta-20x/pom.xml -------------------------------------------------------------------------------- /delta-lake/delta-21x/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/delta-lake/delta-21x/pom.xml -------------------------------------------------------------------------------- /delta-lake/delta-22x/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/delta-lake/delta-22x/pom.xml -------------------------------------------------------------------------------- /delta-lake/delta-23x/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/delta-lake/delta-23x/pom.xml -------------------------------------------------------------------------------- /delta-lake/delta-24x/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/delta-lake/delta-24x/pom.xml -------------------------------------------------------------------------------- /delta-lake/delta-33x/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/delta-lake/delta-33x/pom.xml -------------------------------------------------------------------------------- /delta-lake/delta-40x/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/delta-lake/delta-40x/pom.xml -------------------------------------------------------------------------------- /delta-lake/delta-spark330db/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/delta-lake/delta-spark330db/pom.xml -------------------------------------------------------------------------------- /delta-lake/delta-spark332db/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/delta-lake/delta-spark332db/pom.xml -------------------------------------------------------------------------------- /delta-lake/delta-spark341db/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/delta-lake/delta-spark341db/pom.xml -------------------------------------------------------------------------------- /delta-lake/delta-spark350db143/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/delta-lake/delta-spark350db143/pom.xml -------------------------------------------------------------------------------- /delta-lake/delta-stub/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/delta-lake/delta-stub/pom.xml -------------------------------------------------------------------------------- /dev/host_memory_leaks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/dev/host_memory_leaks/README.md -------------------------------------------------------------------------------- /dev/host_memory_leaks/find_leak.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/dev/host_memory_leaks/find_leak.py -------------------------------------------------------------------------------- /dev/host_memory_leaks/leak_detect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/dev/host_memory_leaks/leak_detect.cpp -------------------------------------------------------------------------------- /dist/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/dist/README.md -------------------------------------------------------------------------------- /dist/build/package-parallel-worlds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/dist/build/package-parallel-worlds.py -------------------------------------------------------------------------------- /dist/maven-antrun/build-parallel-worlds.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/dist/maven-antrun/build-parallel-worlds.xml -------------------------------------------------------------------------------- /dist/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/dist/pom.xml -------------------------------------------------------------------------------- /dist/scripts/binary-dedupe.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/dist/scripts/binary-dedupe.sh -------------------------------------------------------------------------------- /dist/scripts/check-shims-revisions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/dist/scripts/check-shims-revisions.sh -------------------------------------------------------------------------------- /dist/unshimmed-common-from-spark320.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/dist/unshimmed-common-from-spark320.txt -------------------------------------------------------------------------------- /dist/unshimmed-from-each-spark3xx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/dist/unshimmed-from-each-spark3xx.txt -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/_includes/analytics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/docs/_includes/analytics.html -------------------------------------------------------------------------------- /docs/_sass/custom/custom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/docs/_sass/custom/custom.scss -------------------------------------------------------------------------------- /docs/additional-functionality/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/docs/additional-functionality/README.md -------------------------------------------------------------------------------- /docs/additional-functionality/advanced_configs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/docs/additional-functionality/advanced_configs.md -------------------------------------------------------------------------------- /docs/additional-functionality/cache-serializer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/docs/additional-functionality/cache-serializer.md -------------------------------------------------------------------------------- /docs/additional-functionality/per-stage-flamegraph.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/docs/additional-functionality/per-stage-flamegraph.md -------------------------------------------------------------------------------- /docs/additional-functionality/rapids-udfs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/docs/additional-functionality/rapids-udfs.md -------------------------------------------------------------------------------- /docs/additional-functionality/udf-to-catalyst-expressions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/docs/additional-functionality/udf-to-catalyst-expressions.md -------------------------------------------------------------------------------- /docs/archive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/docs/archive.md -------------------------------------------------------------------------------- /docs/archives/CHANGELOG_0.1_to_0.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/docs/archives/CHANGELOG_0.1_to_0.5.md -------------------------------------------------------------------------------- /docs/archives/CHANGELOG_21.06_to_21.12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/docs/archives/CHANGELOG_21.06_to_21.12.md -------------------------------------------------------------------------------- /docs/archives/CHANGELOG_22.02_to_22.12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/docs/archives/CHANGELOG_22.02_to_22.12.md -------------------------------------------------------------------------------- /docs/archives/CHANGELOG_23.02_to_23.12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/docs/archives/CHANGELOG_23.02_to_23.12.md -------------------------------------------------------------------------------- /docs/archives/CHANGELOG_24.02-to-24.12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/docs/archives/CHANGELOG_24.02-to-24.12.md -------------------------------------------------------------------------------- /docs/archives/CHANGELOG_25.02-to-25.06.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/docs/archives/CHANGELOG_25.02-to-25.06.md -------------------------------------------------------------------------------- /docs/compatibility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/docs/compatibility.md -------------------------------------------------------------------------------- /docs/configs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/docs/configs.md -------------------------------------------------------------------------------- /docs/contact-us.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/docs/contact-us.md -------------------------------------------------------------------------------- /docs/demo/AWS-EMR/Mortgage-ETL-GPU-EMR.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/docs/demo/AWS-EMR/Mortgage-ETL-GPU-EMR.ipynb -------------------------------------------------------------------------------- /docs/demo/Databricks/Mortgage-ETL-db.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/docs/demo/Databricks/Mortgage-ETL-db.ipynb -------------------------------------------------------------------------------- /docs/demo/GCP/Mortgage-ETL.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/docs/demo/GCP/Mortgage-ETL.ipynb -------------------------------------------------------------------------------- /docs/demo/GCP/mortgage-xgboost4j-gpu-scala.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/docs/demo/GCP/mortgage-xgboost4j-gpu-scala.ipynb -------------------------------------------------------------------------------- /docs/dev/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/docs/dev/README.md -------------------------------------------------------------------------------- /docs/dev/adaptive-query.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/docs/dev/adaptive-query.md -------------------------------------------------------------------------------- /docs/dev/compute_sanitizer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/docs/dev/compute_sanitizer.md -------------------------------------------------------------------------------- /docs/dev/data-sources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/docs/dev/data-sources.md -------------------------------------------------------------------------------- /docs/dev/get-json-object-dump-tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/docs/dev/get-json-object-dump-tool.md -------------------------------------------------------------------------------- /docs/dev/gpu-core-dumps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/docs/dev/gpu-core-dumps.md -------------------------------------------------------------------------------- /docs/dev/hybrid-execution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/docs/dev/hybrid-execution.md -------------------------------------------------------------------------------- /docs/dev/idea-code-style-settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/docs/dev/idea-code-style-settings.md -------------------------------------------------------------------------------- /docs/dev/idea-code-style-settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/docs/dev/idea-code-style-settings.xml -------------------------------------------------------------------------------- /docs/dev/lore.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/docs/dev/lore.md -------------------------------------------------------------------------------- /docs/dev/mem_debug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/docs/dev/mem_debug.md -------------------------------------------------------------------------------- /docs/dev/microk8s.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/docs/dev/microk8s.md -------------------------------------------------------------------------------- /docs/dev/nvtx_profiling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/docs/dev/nvtx_profiling.md -------------------------------------------------------------------------------- /docs/dev/nvtx_ranges.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/docs/dev/nvtx_ranges.md -------------------------------------------------------------------------------- /docs/dev/shimplify.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/docs/dev/shimplify.md -------------------------------------------------------------------------------- /docs/dev/shims.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/docs/dev/shims.md -------------------------------------------------------------------------------- /docs/dev/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/docs/dev/testing.md -------------------------------------------------------------------------------- /docs/download.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/docs/download.md -------------------------------------------------------------------------------- /docs/img/AWS-EMR/EMR_notebook_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/docs/img/AWS-EMR/EMR_notebook_2.png -------------------------------------------------------------------------------- /docs/img/AWS-EMR/EMR_notebook_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/docs/img/AWS-EMR/EMR_notebook_3.png -------------------------------------------------------------------------------- /docs/img/AWS-EMR/bootstrap-action.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/docs/img/AWS-EMR/bootstrap-action.png -------------------------------------------------------------------------------- /docs/img/AWS-EMR/cluster-configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/docs/img/AWS-EMR/cluster-configuration.png -------------------------------------------------------------------------------- /docs/img/AWS-EMR/name-and-applications.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/docs/img/AWS-EMR/name-and-applications.png -------------------------------------------------------------------------------- /docs/img/AWS-EMR/networking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/docs/img/AWS-EMR/networking.png -------------------------------------------------------------------------------- /docs/img/AWS-EMR/notebook-workspace-creation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/docs/img/AWS-EMR/notebook-workspace-creation.png -------------------------------------------------------------------------------- /docs/img/AWS-EMR/spark-history-server-UI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/docs/img/AWS-EMR/spark-history-server-UI.png -------------------------------------------------------------------------------- /docs/img/AWS-EMR/ssh-key-pair.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/docs/img/AWS-EMR/ssh-key-pair.png -------------------------------------------------------------------------------- /docs/img/Databricks/a-metric-graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/docs/img/Databricks/a-metric-graph.png -------------------------------------------------------------------------------- /docs/img/Databricks/grafana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/docs/img/Databricks/grafana.png -------------------------------------------------------------------------------- /docs/img/Databricks/initscript.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/docs/img/Databricks/initscript.png -------------------------------------------------------------------------------- /docs/img/Databricks/initscript_ucx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/docs/img/Databricks/initscript_ucx.png -------------------------------------------------------------------------------- /docs/img/Databricks/list-metrics-result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/docs/img/Databricks/list-metrics-result.png -------------------------------------------------------------------------------- /docs/img/Databricks/list-metrics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/docs/img/Databricks/list-metrics.png -------------------------------------------------------------------------------- /docs/img/Databricks/prometheus-datasource.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/docs/img/Databricks/prometheus-datasource.png -------------------------------------------------------------------------------- /docs/img/Databricks/save-prometheus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/docs/img/Databricks/save-prometheus.png -------------------------------------------------------------------------------- /docs/img/Databricks/sparkconfig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/docs/img/Databricks/sparkconfig.png -------------------------------------------------------------------------------- /docs/img/Databricks/sparkconfig_ucx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/docs/img/Databricks/sparkconfig_ucx.png -------------------------------------------------------------------------------- /docs/img/GCP/dataproc-cluster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/docs/img/GCP/dataproc-cluster.png -------------------------------------------------------------------------------- /docs/img/GCP/dataproc-service.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/docs/img/GCP/dataproc-service.png -------------------------------------------------------------------------------- /docs/img/Tools/qualification-tool-app-view-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/docs/img/Tools/qualification-tool-app-view-01.png -------------------------------------------------------------------------------- /docs/img/Tools/qualification-tool-app-view-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/docs/img/Tools/qualification-tool-app-view-02.png -------------------------------------------------------------------------------- /docs/img/Tools/qualification-tool-app-view-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/docs/img/Tools/qualification-tool-app-view-03.png -------------------------------------------------------------------------------- /docs/img/concurrentPythonWorker.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/docs/img/concurrentPythonWorker.PNG -------------------------------------------------------------------------------- /docs/img/flamegraph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/docs/img/flamegraph.png -------------------------------------------------------------------------------- /docs/img/join-sql-ui-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/docs/img/join-sql-ui-example.png -------------------------------------------------------------------------------- /docs/img/perf-cost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/docs/img/perf-cost.png -------------------------------------------------------------------------------- /docs/img/spark3cluster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/docs/img/spark3cluster.png -------------------------------------------------------------------------------- /docs/img/tpcxbb-like-results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/docs/img/tpcxbb-like-results.png -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/docs/security.md -------------------------------------------------------------------------------- /docs/supported_ops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/docs/supported_ops.md -------------------------------------------------------------------------------- /iceberg/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/iceberg/pom.xml -------------------------------------------------------------------------------- /iceberg/src/main/java/org/apache/iceberg/data/GpuFileHelpers.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/iceberg/src/main/java/org/apache/iceberg/data/GpuFileHelpers.java -------------------------------------------------------------------------------- /iceberg/src/main/scala/com/nvidia/spark/rapids/iceberg/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/iceberg/src/main/scala/com/nvidia/spark/rapids/iceberg/package.scala -------------------------------------------------------------------------------- /iceberg/src/main/scala/org/apache/iceberg/io/clustered.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/iceberg/src/main/scala/org/apache/iceberg/io/clustered.scala -------------------------------------------------------------------------------- /iceberg/src/main/scala/org/apache/iceberg/io/fanout.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/iceberg/src/main/scala/org/apache/iceberg/io/fanout.scala -------------------------------------------------------------------------------- /iceberg/src/main/scala/org/apache/iceberg/io/rolling.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/iceberg/src/main/scala/org/apache/iceberg/io/rolling.scala -------------------------------------------------------------------------------- /iceberg/src/main/scala/org/apache/iceberg/parquet/GpuParquetIO.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/iceberg/src/main/scala/org/apache/iceberg/parquet/GpuParquetIO.scala -------------------------------------------------------------------------------- /iceberg/src/main/scala/org/apache/iceberg/spark/GpuSparkReadConf.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/iceberg/src/main/scala/org/apache/iceberg/spark/GpuSparkReadConf.scala -------------------------------------------------------------------------------- /iceberg/src/main/scala/org/apache/iceberg/spark/functions/bucket.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/iceberg/src/main/scala/org/apache/iceberg/spark/functions/bucket.scala -------------------------------------------------------------------------------- /iceberg/src/main/scala/org/apache/iceberg/spark/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/iceberg/src/main/scala/org/apache/iceberg/spark/package.scala -------------------------------------------------------------------------------- /iceberg/src/main/scala/org/apache/iceberg/spark/source/write.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/iceberg/src/main/scala/org/apache/iceberg/spark/source/write.scala -------------------------------------------------------------------------------- /integration_tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/README.md -------------------------------------------------------------------------------- /integration_tests/ScaleTest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/ScaleTest.md -------------------------------------------------------------------------------- /integration_tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/conftest.py -------------------------------------------------------------------------------- /integration_tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/pom.xml -------------------------------------------------------------------------------- /integration_tests/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/pytest.ini -------------------------------------------------------------------------------- /integration_tests/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/requirements.txt -------------------------------------------------------------------------------- /integration_tests/run_pyspark_from_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/run_pyspark_from_build.sh -------------------------------------------------------------------------------- /integration_tests/runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/runtests.py -------------------------------------------------------------------------------- /integration_tests/src/assembly/bin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/assembly/bin.xml -------------------------------------------------------------------------------- /integration_tests/src/main/python/aqe_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/aqe_test.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/arithmetic_ops_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/arithmetic_ops_test.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/array_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/array_test.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/assert_in_tests_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/assert_in_tests_test.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/asserts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/asserts.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/ast_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/ast_test.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/avro_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/avro_test.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/cache_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/cache_test.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/cast_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/cast_test.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/cmp_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/cmp_test.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/col_size_exceeding_cudf_limit_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/col_size_exceeding_cudf_limit_test.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/collection_ops_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/collection_ops_test.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/conditionals_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/conditionals_test.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/conftest.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/csv_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/csv_test.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/data_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/data_gen.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/datasourcev2_read_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/datasourcev2_read_test.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/datasourcev2_write_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/datasourcev2_write_test.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/date_time_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/date_time_test.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/decimal_precision_over_max_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/decimal_precision_over_max_test.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/delta_lake_auto_compact_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/delta_lake_auto_compact_test.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/delta_lake_clustered_reads_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/delta_lake_clustered_reads_test.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/delta_lake_delete_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/delta_lake_delete_test.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/delta_lake_liquid_clustering_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/delta_lake_liquid_clustering_test.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/delta_lake_low_shuffle_merge_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/delta_lake_low_shuffle_merge_test.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/delta_lake_merge_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/delta_lake_merge_common.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/delta_lake_merge_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/delta_lake_merge_test.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/delta_lake_optimize_table_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/delta_lake_optimize_table_test.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/delta_lake_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/delta_lake_test.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/delta_lake_time_travel_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/delta_lake_time_travel_test.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/delta_lake_update_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/delta_lake_update_test.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/delta_lake_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/delta_lake_utils.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/delta_lake_write_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/delta_lake_write_test.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/delta_zorder_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/delta_zorder_test.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/dpp_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/dpp_test.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/expand_exec_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/expand_exec_test.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/explain_mode_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/explain_mode_test.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/explain_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/explain_test.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/fastparquet_compatibility_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/fastparquet_compatibility_test.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/fastparquet_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/fastparquet_utils.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/generate_expr_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/generate_expr_test.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/get_json_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/get_json_test.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/grouping_sets_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/grouping_sets_test.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/hash_aggregate_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/hash_aggregate_test.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/hashing_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/hashing_test.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/higher_order_functions_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/higher_order_functions_test.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/hive_delimited_text_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/hive_delimited_text_test.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/hive_parquet_write_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/hive_parquet_write_test.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/hive_write_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/hive_write_test.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/hybrid_parquet_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/hybrid_parquet_test.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/hyper_log_log_plus_plus_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/hyper_log_log_plus_plus_test.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/iceberg/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/iceberg/__init__.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/iceberg/iceberg_append_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/iceberg/iceberg_append_test.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/iceberg/iceberg_ctas_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/iceberg/iceberg_ctas_test.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/iceberg/iceberg_delete_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/iceberg/iceberg_delete_test.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/iceberg/iceberg_merge_on_read_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/iceberg/iceberg_merge_on_read_test.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/iceberg/iceberg_merge_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/iceberg/iceberg_merge_test.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/iceberg/iceberg_rtas_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/iceberg/iceberg_rtas_test.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/iceberg/iceberg_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/iceberg/iceberg_test.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/iceberg/iceberg_update_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/iceberg/iceberg_update_test.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/inset_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/inset_test.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/join_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/join_test.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/json_fuzz_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/json_fuzz_test.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/json_matrix_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/json_matrix_test.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/json_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/json_test.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/json_tuple_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/json_tuple_test.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/kudo_dump_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/kudo_dump_test.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/limit_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/limit_test.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/logic_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/logic_test.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/map_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/map_test.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/marks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/marks.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/misc_expr_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/misc_expr_test.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/misc_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/misc_test.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/mortgage_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/mortgage_test.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/multithread_file_reader_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/multithread_file_reader_utils.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/orc_cast_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/orc_cast_test.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/orc_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/orc_test.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/orc_write_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/orc_write_test.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/parquet_pyarrow_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/parquet_pyarrow_test.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/parquet_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/parquet_test.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/parquet_testing_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/parquet_testing_test.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/parquet_write_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/parquet_write_test.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/project_lit_alias_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/project_lit_alias_test.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/project_presplit_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/project_presplit_test.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/prune_partition_column_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/prune_partition_column_test.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/pyarrow_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/pyarrow_utils.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/qa_nightly_select_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/qa_nightly_select_test.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/qa_nightly_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/qa_nightly_sql.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/rand_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/rand_test.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/range_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/range_test.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/regexp_no_unicode_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/regexp_no_unicode_test.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/regexp_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/regexp_test.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/repart_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/repart_test.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/row-based_udf_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/row-based_udf_test.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/row_conversion_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/row_conversion_test.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/sample_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/sample_test.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/scan_default_values_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/scan_default_values_test.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/schema_evolution_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/schema_evolution_test.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/sort_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/sort_test.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/spark_init_internal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/spark_init_internal.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/spark_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/spark_session.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/string_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/string_test.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/string_type_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/string_type_test.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/struct_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/struct_test.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/subquery_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/subquery_test.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/time_window_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/time_window_test.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/timezones.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/timezones.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/udf_cudf_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/udf_cudf_test.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/udf_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/udf_test.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/url_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/url_test.py -------------------------------------------------------------------------------- /integration_tests/src/main/python/window_function_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/main/python/window_function_test.py -------------------------------------------------------------------------------- /integration_tests/src/test/resources/Acquisition_2007Q3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/test/resources/Acquisition_2007Q3.txt -------------------------------------------------------------------------------- /integration_tests/src/test/resources/Performance_2007Q3.txt_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/test/resources/Performance_2007Q3.txt_0 -------------------------------------------------------------------------------- /integration_tests/src/test/resources/SPARK-32639/000.snappy.parquet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/test/resources/SPARK-32639/000.snappy.parquet -------------------------------------------------------------------------------- /integration_tests/src/test/resources/V_0_11.orc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/test/resources/V_0_11.orc -------------------------------------------------------------------------------- /integration_tests/src/test/resources/V_0_12.orc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/test/resources/V_0_12.orc -------------------------------------------------------------------------------- /integration_tests/src/test/resources/bad_whitespace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/test/resources/bad_whitespace.json -------------------------------------------------------------------------------- /integration_tests/src/test/resources/binary_as_string.parquet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/test/resources/binary_as_string.parquet -------------------------------------------------------------------------------- /integration_tests/src/test/resources/boolean.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/test/resources/boolean.json -------------------------------------------------------------------------------- /integration_tests/src/test/resources/boolean_formatted.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/test/resources/boolean_formatted.json -------------------------------------------------------------------------------- /integration_tests/src/test/resources/boolean_invalid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/test/resources/boolean_invalid.json -------------------------------------------------------------------------------- /integration_tests/src/test/resources/date.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/test/resources/date.csv -------------------------------------------------------------------------------- /integration_tests/src/test/resources/dates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/test/resources/dates.json -------------------------------------------------------------------------------- /integration_tests/src/test/resources/dates_invalid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/test/resources/dates_invalid.json -------------------------------------------------------------------------------- /integration_tests/src/test/resources/decimals.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/test/resources/decimals.csv -------------------------------------------------------------------------------- /integration_tests/src/test/resources/decimals.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/test/resources/decimals.json -------------------------------------------------------------------------------- /integration_tests/src/test/resources/empty.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integration_tests/src/test/resources/empty_arrow.parquet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/test/resources/empty_arrow.parquet -------------------------------------------------------------------------------- /integration_tests/src/test/resources/empty_int_values.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/test/resources/empty_int_values.csv -------------------------------------------------------------------------------- /integration_tests/src/test/resources/escaped_strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/test/resources/escaped_strings.json -------------------------------------------------------------------------------- /integration_tests/src/test/resources/float_formatted.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/test/resources/float_formatted.json -------------------------------------------------------------------------------- /integration_tests/src/test/resources/float_formatted_strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/test/resources/float_formatted_strings.json -------------------------------------------------------------------------------- /integration_tests/src/test/resources/floats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/test/resources/floats.json -------------------------------------------------------------------------------- /integration_tests/src/test/resources/floats_edge_cases.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/test/resources/floats_edge_cases.json -------------------------------------------------------------------------------- /integration_tests/src/test/resources/floats_invalid.csv: -------------------------------------------------------------------------------- 1 | "number" 2 | true 3 | false 4 | bad 5 | "bad" -------------------------------------------------------------------------------- /integration_tests/src/test/resources/floats_invalid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/test/resources/floats_invalid.json -------------------------------------------------------------------------------- /integration_tests/src/test/resources/floats_leading_zeros.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/test/resources/floats_leading_zeros.json -------------------------------------------------------------------------------- /integration_tests/src/test/resources/hive-delim-text/carriage-return-err/carriage.return.err.hive.txt: -------------------------------------------------------------------------------- 1 | abc def ghi 2 | ABC DEF GHI 3 | -------------------------------------------------------------------------------- /integration_tests/src/test/resources/hive-delim-text/carriage-return/carriage.return.hive.txt: -------------------------------------------------------------------------------- 1 | abc def ghi 2 | ABC DEF GHI 3 | JKLMNO PQR 4 | -------------------------------------------------------------------------------- /integration_tests/src/test/resources/hive-delim-text/date/date.hive.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/test/resources/hive-delim-text/date/date.hive.txt -------------------------------------------------------------------------------- /integration_tests/src/test/resources/int_array_formatted.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/test/resources/int_array_formatted.json -------------------------------------------------------------------------------- /integration_tests/src/test/resources/int_formatted.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/test/resources/int_formatted.json -------------------------------------------------------------------------------- /integration_tests/src/test/resources/int_formatted_strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/test/resources/int_formatted_strings.json -------------------------------------------------------------------------------- /integration_tests/src/test/resources/int_struct_formatted.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/test/resources/int_struct_formatted.json -------------------------------------------------------------------------------- /integration_tests/src/test/resources/ints.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/test/resources/ints.json -------------------------------------------------------------------------------- /integration_tests/src/test/resources/ints_invalid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/test/resources/ints_invalid.json -------------------------------------------------------------------------------- /integration_tests/src/test/resources/ints_with_whitespace.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/test/resources/ints_with_whitespace.csv -------------------------------------------------------------------------------- /integration_tests/src/test/resources/invalid_ridealong_columns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/test/resources/invalid_ridealong_columns.json -------------------------------------------------------------------------------- /integration_tests/src/test/resources/just_comments.csv: -------------------------------------------------------------------------------- 1 | #This,should,look,like,nothing 2 | #COMMENT 3 | 4 | # More Comments 5 | 6 | 7 | -------------------------------------------------------------------------------- /integration_tests/src/test/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/test/resources/log4j.properties -------------------------------------------------------------------------------- /integration_tests/src/test/resources/log4j2.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/test/resources/log4j2.properties -------------------------------------------------------------------------------- /integration_tests/src/test/resources/malformed1.ndjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/test/resources/malformed1.ndjson -------------------------------------------------------------------------------- /integration_tests/src/test/resources/malformed2.ndjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/test/resources/malformed2.ndjson -------------------------------------------------------------------------------- /integration_tests/src/test/resources/malformed3.ndjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/test/resources/malformed3.ndjson -------------------------------------------------------------------------------- /integration_tests/src/test/resources/malformed4.ndjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/test/resources/malformed4.ndjson -------------------------------------------------------------------------------- /integration_tests/src/test/resources/mixed-nested.ndjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/test/resources/mixed-nested.ndjson -------------------------------------------------------------------------------- /integration_tests/src/test/resources/mixed-primitive-arrays.ndjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/test/resources/mixed-primitive-arrays.ndjson -------------------------------------------------------------------------------- /integration_tests/src/test/resources/mixed-primitives-nested.ndjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/test/resources/mixed-primitives-nested.ndjson -------------------------------------------------------------------------------- /integration_tests/src/test/resources/mixed-primitives.ndjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/test/resources/mixed-primitives.ndjson -------------------------------------------------------------------------------- /integration_tests/src/test/resources/mixed-types-in-struct.ndjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/test/resources/mixed-types-in-struct.ndjson -------------------------------------------------------------------------------- /integration_tests/src/test/resources/mixed_objects.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/test/resources/mixed_objects.json -------------------------------------------------------------------------------- /integration_tests/src/test/resources/nan_and_inf.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/test/resources/nan_and_inf.csv -------------------------------------------------------------------------------- /integration_tests/src/test/resources/nan_and_inf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/test/resources/nan_and_inf.json -------------------------------------------------------------------------------- /integration_tests/src/test/resources/nan_and_inf_invalid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/test/resources/nan_and_inf_invalid.json -------------------------------------------------------------------------------- /integration_tests/src/test/resources/nan_and_inf_strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/test/resources/nan_and_inf_strings.json -------------------------------------------------------------------------------- /integration_tests/src/test/resources/nested-structs.ndjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/test/resources/nested-structs.ndjson -------------------------------------------------------------------------------- /integration_tests/src/test/resources/nested_escaped_strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/test/resources/nested_escaped_strings.json -------------------------------------------------------------------------------- /integration_tests/src/test/resources/no-comments.csv: -------------------------------------------------------------------------------- 1 | ~1,2,3 2 | #4,5,6 3 | 7,8,9 4 | -------------------------------------------------------------------------------- /integration_tests/src/test/resources/optional-fields.ndjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/test/resources/optional-fields.ndjson -------------------------------------------------------------------------------- /integration_tests/src/test/resources/people.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/test/resources/people.csv -------------------------------------------------------------------------------- /integration_tests/src/test/resources/pytest_log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/test/resources/pytest_log4j.properties -------------------------------------------------------------------------------- /integration_tests/src/test/resources/repeated_columns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/test/resources/repeated_columns.json -------------------------------------------------------------------------------- /integration_tests/src/test/resources/scan_emtpy_lines.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/test/resources/scan_emtpy_lines.json -------------------------------------------------------------------------------- /integration_tests/src/test/resources/sci_formatted.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/test/resources/sci_formatted.json -------------------------------------------------------------------------------- /integration_tests/src/test/resources/sci_formatted_strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/test/resources/sci_formatted_strings.json -------------------------------------------------------------------------------- /integration_tests/src/test/resources/simple-nested.ndjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/test/resources/simple-nested.ndjson -------------------------------------------------------------------------------- /integration_tests/src/test/resources/simple_boolean_values.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/test/resources/simple_boolean_values.csv -------------------------------------------------------------------------------- /integration_tests/src/test/resources/simple_float_values.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/test/resources/simple_float_values.csv -------------------------------------------------------------------------------- /integration_tests/src/test/resources/simple_int_values.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/test/resources/simple_int_values.csv -------------------------------------------------------------------------------- /integration_tests/src/test/resources/single_quoted_strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/test/resources/single_quoted_strings.json -------------------------------------------------------------------------------- /integration_tests/src/test/resources/small_float_values.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/test/resources/small_float_values.csv -------------------------------------------------------------------------------- /integration_tests/src/test/resources/str.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/test/resources/str.csv -------------------------------------------------------------------------------- /integration_tests/src/test/resources/t0.csv: -------------------------------------------------------------------------------- 1 | c0,c1 2 | -------------------------------------------------------------------------------- /integration_tests/src/test/resources/t1.csv: -------------------------------------------------------------------------------- 1 | c0 2 | true 3 | -------------------------------------------------------------------------------- /integration_tests/src/test/resources/test_gbk.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/test/resources/test_gbk.csv -------------------------------------------------------------------------------- /integration_tests/src/test/resources/test_orc_varchar.orc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/test/resources/test_orc_varchar.orc -------------------------------------------------------------------------------- /integration_tests/src/test/resources/timestamp-date-test.orc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/test/resources/timestamp-date-test.orc -------------------------------------------------------------------------------- /integration_tests/src/test/resources/timestamp-nanos.parquet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/test/resources/timestamp-nanos.parquet -------------------------------------------------------------------------------- /integration_tests/src/test/resources/timestamp_formatted_strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/test/resources/timestamp_formatted_strings.json -------------------------------------------------------------------------------- /integration_tests/src/test/resources/timestamp_ltz.orc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/test/resources/timestamp_ltz.orc -------------------------------------------------------------------------------- /integration_tests/src/test/resources/timestamps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/test/resources/timestamps.json -------------------------------------------------------------------------------- /integration_tests/src/test/resources/trucks-blank-names.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/test/resources/trucks-blank-names.csv -------------------------------------------------------------------------------- /integration_tests/src/test/resources/trucks-comments.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/test/resources/trucks-comments.csv -------------------------------------------------------------------------------- /integration_tests/src/test/resources/trucks-different.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/test/resources/trucks-different.csv -------------------------------------------------------------------------------- /integration_tests/src/test/resources/trucks-empty-values.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/test/resources/trucks-empty-values.csv -------------------------------------------------------------------------------- /integration_tests/src/test/resources/trucks-extra-columns.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/test/resources/trucks-extra-columns.csv -------------------------------------------------------------------------------- /integration_tests/src/test/resources/trucks-missing-quotes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/test/resources/trucks-missing-quotes.csv -------------------------------------------------------------------------------- /integration_tests/src/test/resources/trucks-more-comments.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/test/resources/trucks-more-comments.csv -------------------------------------------------------------------------------- /integration_tests/src/test/resources/trucks-null.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/test/resources/trucks-null.csv -------------------------------------------------------------------------------- /integration_tests/src/test/resources/trucks-windows.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/test/resources/trucks-windows.csv -------------------------------------------------------------------------------- /integration_tests/src/test/resources/trucks.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/test/resources/trucks.csv -------------------------------------------------------------------------------- /integration_tests/src/test/resources/trucks.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/test/resources/trucks.tsv -------------------------------------------------------------------------------- /integration_tests/src/test/resources/ts.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/test/resources/ts.csv -------------------------------------------------------------------------------- /integration_tests/src/test/resources/unquotedChars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/test/resources/unquotedChars.json -------------------------------------------------------------------------------- /integration_tests/src/test/resources/withComments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/test/resources/withComments.json -------------------------------------------------------------------------------- /integration_tests/src/test/resources/withNonnumericNumbers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/test/resources/withNonnumericNumbers.json -------------------------------------------------------------------------------- /integration_tests/src/test/resources/withNumericLeadingZeros.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/test/resources/withNumericLeadingZeros.json -------------------------------------------------------------------------------- /integration_tests/src/test/resources/withSingleQuotes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/test/resources/withSingleQuotes.json -------------------------------------------------------------------------------- /integration_tests/src/test/resources/withUnquotedControlChars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/test/resources/withUnquotedControlChars.json -------------------------------------------------------------------------------- /integration_tests/src/test/resources/withUnquotedFieldNames.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/integration_tests/src/test/resources/withUnquotedFieldNames.json -------------------------------------------------------------------------------- /jdk-profiles/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/jdk-profiles/pom.xml -------------------------------------------------------------------------------- /jenkins/Dockerfile-blossom.integration.rocky: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/jenkins/Dockerfile-blossom.integration.rocky -------------------------------------------------------------------------------- /jenkins/Dockerfile-blossom.integration.ubuntu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/jenkins/Dockerfile-blossom.integration.ubuntu -------------------------------------------------------------------------------- /jenkins/Dockerfile-blossom.ubuntu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/jenkins/Dockerfile-blossom.ubuntu -------------------------------------------------------------------------------- /jenkins/Jenkinsfile-blossom.premerge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/jenkins/Jenkinsfile-blossom.premerge -------------------------------------------------------------------------------- /jenkins/Jenkinsfile-blossom.premerge-databricks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/jenkins/Jenkinsfile-blossom.premerge-databricks -------------------------------------------------------------------------------- /jenkins/databricks/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/jenkins/databricks/build.sh -------------------------------------------------------------------------------- /jenkins/databricks/clusterutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/jenkins/databricks/clusterutils.py -------------------------------------------------------------------------------- /jenkins/databricks/common_vars.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/jenkins/databricks/common_vars.sh -------------------------------------------------------------------------------- /jenkins/databricks/create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/jenkins/databricks/create.py -------------------------------------------------------------------------------- /jenkins/databricks/cudf_udf_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/jenkins/databricks/cudf_udf_test.sh -------------------------------------------------------------------------------- /jenkins/databricks/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/jenkins/databricks/deploy.sh -------------------------------------------------------------------------------- /jenkins/databricks/init_cuda11_runtime.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/jenkins/databricks/init_cuda11_runtime.sh -------------------------------------------------------------------------------- /jenkins/databricks/init_cudf_udf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/jenkins/databricks/init_cudf_udf.sh -------------------------------------------------------------------------------- /jenkins/databricks/install_deps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/jenkins/databricks/install_deps.py -------------------------------------------------------------------------------- /jenkins/databricks/params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/jenkins/databricks/params.py -------------------------------------------------------------------------------- /jenkins/databricks/run-build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/jenkins/databricks/run-build.py -------------------------------------------------------------------------------- /jenkins/databricks/run-tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/jenkins/databricks/run-tests.py -------------------------------------------------------------------------------- /jenkins/databricks/run_it.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/jenkins/databricks/run_it.sh -------------------------------------------------------------------------------- /jenkins/databricks/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/jenkins/databricks/setup.sh -------------------------------------------------------------------------------- /jenkins/databricks/shutdown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/jenkins/databricks/shutdown.py -------------------------------------------------------------------------------- /jenkins/databricks/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/jenkins/databricks/test.sh -------------------------------------------------------------------------------- /jenkins/dependency-check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/jenkins/dependency-check.sh -------------------------------------------------------------------------------- /jenkins/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/jenkins/deploy.sh -------------------------------------------------------------------------------- /jenkins/hadoop-def.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/jenkins/hadoop-def.sh -------------------------------------------------------------------------------- /jenkins/hybrid_execution.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/jenkins/hybrid_execution.sh -------------------------------------------------------------------------------- /jenkins/printJarVersion.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/jenkins/printJarVersion.sh -------------------------------------------------------------------------------- /jenkins/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/jenkins/settings.xml -------------------------------------------------------------------------------- /jenkins/spark-nightly-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/jenkins/spark-nightly-build.sh -------------------------------------------------------------------------------- /jenkins/spark-premerge-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/jenkins/spark-premerge-build.sh -------------------------------------------------------------------------------- /jenkins/spark-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/jenkins/spark-tests.sh -------------------------------------------------------------------------------- /jenkins/test-timezones.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/jenkins/test-timezones.sh -------------------------------------------------------------------------------- /jenkins/version-def.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/jenkins/version-def.sh -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/pom.xml -------------------------------------------------------------------------------- /python/rapids/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/python/rapids/__init__.py -------------------------------------------------------------------------------- /python/rapids/daemon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/python/rapids/daemon.py -------------------------------------------------------------------------------- /python/rapids/daemon_databricks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/python/rapids/daemon_databricks.py -------------------------------------------------------------------------------- /python/rapids/worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/python/rapids/worker.py -------------------------------------------------------------------------------- /scala2.13/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/scala2.13/README.md -------------------------------------------------------------------------------- /scala2.13/aggregator/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/scala2.13/aggregator/pom.xml -------------------------------------------------------------------------------- /scala2.13/api_validation/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/scala2.13/api_validation/pom.xml -------------------------------------------------------------------------------- /scala2.13/datagen/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/scala2.13/datagen/pom.xml -------------------------------------------------------------------------------- /scala2.13/delta-lake/delta-20x/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/scala2.13/delta-lake/delta-20x/pom.xml -------------------------------------------------------------------------------- /scala2.13/delta-lake/delta-21x/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/scala2.13/delta-lake/delta-21x/pom.xml -------------------------------------------------------------------------------- /scala2.13/delta-lake/delta-22x/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/scala2.13/delta-lake/delta-22x/pom.xml -------------------------------------------------------------------------------- /scala2.13/delta-lake/delta-23x/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/scala2.13/delta-lake/delta-23x/pom.xml -------------------------------------------------------------------------------- /scala2.13/delta-lake/delta-24x/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/scala2.13/delta-lake/delta-24x/pom.xml -------------------------------------------------------------------------------- /scala2.13/delta-lake/delta-33x/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/scala2.13/delta-lake/delta-33x/pom.xml -------------------------------------------------------------------------------- /scala2.13/delta-lake/delta-40x/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/scala2.13/delta-lake/delta-40x/pom.xml -------------------------------------------------------------------------------- /scala2.13/delta-lake/delta-spark330db/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/scala2.13/delta-lake/delta-spark330db/pom.xml -------------------------------------------------------------------------------- /scala2.13/delta-lake/delta-spark332db/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/scala2.13/delta-lake/delta-spark332db/pom.xml -------------------------------------------------------------------------------- /scala2.13/delta-lake/delta-spark341db/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/scala2.13/delta-lake/delta-spark341db/pom.xml -------------------------------------------------------------------------------- /scala2.13/delta-lake/delta-spark350db143/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/scala2.13/delta-lake/delta-spark350db143/pom.xml -------------------------------------------------------------------------------- /scala2.13/delta-lake/delta-stub/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/scala2.13/delta-lake/delta-stub/pom.xml -------------------------------------------------------------------------------- /scala2.13/dist/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/scala2.13/dist/pom.xml -------------------------------------------------------------------------------- /scala2.13/iceberg/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/scala2.13/iceberg/pom.xml -------------------------------------------------------------------------------- /scala2.13/integration_tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/scala2.13/integration_tests/pom.xml -------------------------------------------------------------------------------- /scala2.13/jdk-profiles/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/scala2.13/jdk-profiles/pom.xml -------------------------------------------------------------------------------- /scala2.13/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/scala2.13/pom.xml -------------------------------------------------------------------------------- /scala2.13/shim-deps/cloudera/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/scala2.13/shim-deps/cloudera/pom.xml -------------------------------------------------------------------------------- /scala2.13/shim-deps/databricks/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/scala2.13/shim-deps/databricks/pom.xml -------------------------------------------------------------------------------- /scala2.13/shim-deps/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/scala2.13/shim-deps/pom.xml -------------------------------------------------------------------------------- /scala2.13/shuffle-plugin/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/scala2.13/shuffle-plugin/pom.xml -------------------------------------------------------------------------------- /scala2.13/sql-plugin-api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/scala2.13/sql-plugin-api/pom.xml -------------------------------------------------------------------------------- /scala2.13/sql-plugin/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/scala2.13/sql-plugin/pom.xml -------------------------------------------------------------------------------- /scala2.13/tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/scala2.13/tests/pom.xml -------------------------------------------------------------------------------- /scala2.13/tools/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/scala2.13/tools/pom.xml -------------------------------------------------------------------------------- /scala2.13/udf-compiler/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/scala2.13/udf-compiler/pom.xml -------------------------------------------------------------------------------- /scalastyle-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/scalastyle-config.xml -------------------------------------------------------------------------------- /scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/scripts/README.md -------------------------------------------------------------------------------- /scripts/audit-spark.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/scripts/audit-spark.sh -------------------------------------------------------------------------------- /scripts/auto-copyrighter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/scripts/auto-copyrighter.sh -------------------------------------------------------------------------------- /scripts/generate-changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/scripts/generate-changelog -------------------------------------------------------------------------------- /scripts/prioritize-commits.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/scripts/prioritize-commits.sh -------------------------------------------------------------------------------- /shim-deps/cloudera/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/shim-deps/cloudera/pom.xml -------------------------------------------------------------------------------- /shim-deps/databricks/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/shim-deps/databricks/pom.xml -------------------------------------------------------------------------------- /shim-deps/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/shim-deps/pom.xml -------------------------------------------------------------------------------- /shuffle-plugin/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/shuffle-plugin/pom.xml -------------------------------------------------------------------------------- /sql-plugin-api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin-api/pom.xml -------------------------------------------------------------------------------- /sql-plugin-api/src/main/java/com/nvidia/spark/RapidsUDAF.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin-api/src/main/java/com/nvidia/spark/RapidsUDAF.java -------------------------------------------------------------------------------- /sql-plugin-api/src/main/java/com/nvidia/spark/RapidsUDF.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin-api/src/main/java/com/nvidia/spark/RapidsUDF.java -------------------------------------------------------------------------------- /sql-plugin-api/src/main/java/com/nvidia/spark/Retryable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin-api/src/main/java/com/nvidia/spark/Retryable.java -------------------------------------------------------------------------------- /sql-plugin-api/src/main/scala/com/nvidia/spark/DFUDFPlugin.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin-api/src/main/scala/com/nvidia/spark/DFUDFPlugin.scala -------------------------------------------------------------------------------- /sql-plugin-api/src/main/scala/com/nvidia/spark/SQLPlugin.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin-api/src/main/scala/com/nvidia/spark/SQLPlugin.scala -------------------------------------------------------------------------------- /sql-plugin-api/src/main/scala/com/nvidia/spark/functions.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin-api/src/main/scala/com/nvidia/spark/functions.scala -------------------------------------------------------------------------------- /sql-plugin-api/src/main/scala/com/nvidia/spark/rapids/AssertUtils.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin-api/src/main/scala/com/nvidia/spark/rapids/AssertUtils.scala -------------------------------------------------------------------------------- /sql-plugin-api/src/main/scala/com/nvidia/spark/rapids/ColumnarRdd.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin-api/src/main/scala/com/nvidia/spark/rapids/ColumnarRdd.scala -------------------------------------------------------------------------------- /sql-plugin-api/src/main/scala/com/nvidia/spark/rapids/Functions.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin-api/src/main/scala/com/nvidia/spark/rapids/Functions.scala -------------------------------------------------------------------------------- /sql-plugin-api/src/main/scala/com/nvidia/spark/rapids/PlanUtils.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin-api/src/main/scala/com/nvidia/spark/rapids/PlanUtils.scala -------------------------------------------------------------------------------- /sql-plugin-api/src/main/scala/com/nvidia/spark/rapids/ShimLoader.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin-api/src/main/scala/com/nvidia/spark/rapids/ShimLoader.scala -------------------------------------------------------------------------------- /sql-plugin-api/src/main/scala/com/nvidia/spark/udf/Plugin.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin-api/src/main/scala/com/nvidia/spark/udf/Plugin.scala -------------------------------------------------------------------------------- /sql-plugin/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/pom.xml -------------------------------------------------------------------------------- /sql-plugin/src/main/format/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/main/format/README.md -------------------------------------------------------------------------------- /sql-plugin/src/main/format/ShuffleCommon.fbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/main/format/ShuffleCommon.fbs -------------------------------------------------------------------------------- /sql-plugin/src/main/format/ShuffleMetadataRequest.fbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/main/format/ShuffleMetadataRequest.fbs -------------------------------------------------------------------------------- /sql-plugin/src/main/format/ShuffleMetadataResponse.fbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/main/format/ShuffleMetadataResponse.fbs -------------------------------------------------------------------------------- /sql-plugin/src/main/format/ShuffleTransferRequest.fbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/main/format/ShuffleTransferRequest.fbs -------------------------------------------------------------------------------- /sql-plugin/src/main/format/ShuffleTransferResponse.fbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/main/format/ShuffleTransferResponse.fbs -------------------------------------------------------------------------------- /sql-plugin/src/main/java/com/nvidia/spark/rapids/GpuColumnVector.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/main/java/com/nvidia/spark/rapids/GpuColumnVector.java -------------------------------------------------------------------------------- /sql-plugin/src/main/java/com/nvidia/spark/rapids/WithTableBuffer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/main/java/com/nvidia/spark/rapids/WithTableBuffer.java -------------------------------------------------------------------------------- /sql-plugin/src/main/java/com/nvidia/spark/rapids/format/BufferMeta.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/main/java/com/nvidia/spark/rapids/format/BufferMeta.java -------------------------------------------------------------------------------- /sql-plugin/src/main/java/com/nvidia/spark/rapids/format/CodecType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/main/java/com/nvidia/spark/rapids/format/CodecType.java -------------------------------------------------------------------------------- /sql-plugin/src/main/java/com/nvidia/spark/rapids/format/TableMeta.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/main/java/com/nvidia/spark/rapids/format/TableMeta.java -------------------------------------------------------------------------------- /sql-plugin/src/main/scala-2.12/com/nvidia/spark/rapids/implicits.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/main/scala-2.12/com/nvidia/spark/rapids/implicits.scala -------------------------------------------------------------------------------- /sql-plugin/src/main/scala-2.13/com/nvidia/spark/rapids/implicits.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/main/scala-2.13/com/nvidia/spark/rapids/implicits.scala -------------------------------------------------------------------------------- /sql-plugin/src/main/scala/com/nvidia/spark/CurrentBatchIterator.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/main/scala/com/nvidia/spark/CurrentBatchIterator.scala -------------------------------------------------------------------------------- /sql-plugin/src/main/scala/com/nvidia/spark/DFUDFPluginImpl.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/main/scala/com/nvidia/spark/DFUDFPluginImpl.scala -------------------------------------------------------------------------------- /sql-plugin/src/main/scala/com/nvidia/spark/FunctionsImpl.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/main/scala/com/nvidia/spark/FunctionsImpl.scala -------------------------------------------------------------------------------- /sql-plugin/src/main/scala/com/nvidia/spark/TimingUtils.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/main/scala/com/nvidia/spark/TimingUtils.scala -------------------------------------------------------------------------------- /sql-plugin/src/main/scala/com/nvidia/spark/rapids/Arm.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/main/scala/com/nvidia/spark/rapids/Arm.scala -------------------------------------------------------------------------------- /sql-plugin/src/main/scala/com/nvidia/spark/rapids/ArrayIndexUtils.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/main/scala/com/nvidia/spark/rapids/ArrayIndexUtils.scala -------------------------------------------------------------------------------- /sql-plugin/src/main/scala/com/nvidia/spark/rapids/ArrayUtils.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/main/scala/com/nvidia/spark/rapids/ArrayUtils.scala -------------------------------------------------------------------------------- /sql-plugin/src/main/scala/com/nvidia/spark/rapids/AstUtil.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/main/scala/com/nvidia/spark/rapids/AstUtil.scala -------------------------------------------------------------------------------- /sql-plugin/src/main/scala/com/nvidia/spark/rapids/AvroFileWriter.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/main/scala/com/nvidia/spark/rapids/AvroFileWriter.scala -------------------------------------------------------------------------------- /sql-plugin/src/main/scala/com/nvidia/spark/rapids/AvroProvider.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/main/scala/com/nvidia/spark/rapids/AvroProvider.scala -------------------------------------------------------------------------------- /sql-plugin/src/main/scala/com/nvidia/spark/rapids/BoolUtils.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/main/scala/com/nvidia/spark/rapids/BoolUtils.scala -------------------------------------------------------------------------------- /sql-plugin/src/main/scala/com/nvidia/spark/rapids/ColumnCastUtil.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/main/scala/com/nvidia/spark/rapids/ColumnCastUtil.scala -------------------------------------------------------------------------------- /sql-plugin/src/main/scala/com/nvidia/spark/rapids/ColumnViewUtils.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/main/scala/com/nvidia/spark/rapids/ColumnViewUtils.scala -------------------------------------------------------------------------------- /sql-plugin/src/main/scala/com/nvidia/spark/rapids/DataTypeUtils.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/main/scala/com/nvidia/spark/rapids/DataTypeUtils.scala -------------------------------------------------------------------------------- /sql-plugin/src/main/scala/com/nvidia/spark/rapids/DateUtils.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/main/scala/com/nvidia/spark/rapids/DateUtils.scala -------------------------------------------------------------------------------- /sql-plugin/src/main/scala/com/nvidia/spark/rapids/DecimalUtil.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/main/scala/com/nvidia/spark/rapids/DecimalUtil.scala -------------------------------------------------------------------------------- /sql-plugin/src/main/scala/com/nvidia/spark/rapids/DumpUtils.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/main/scala/com/nvidia/spark/rapids/DumpUtils.scala -------------------------------------------------------------------------------- /sql-plugin/src/main/scala/com/nvidia/spark/rapids/ExecutorCache.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/main/scala/com/nvidia/spark/rapids/ExecutorCache.scala -------------------------------------------------------------------------------- /sql-plugin/src/main/scala/com/nvidia/spark/rapids/ExplainPlan.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/main/scala/com/nvidia/spark/rapids/ExplainPlan.scala -------------------------------------------------------------------------------- /sql-plugin/src/main/scala/com/nvidia/spark/rapids/FileUtils.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/main/scala/com/nvidia/spark/rapids/FileUtils.scala -------------------------------------------------------------------------------- /sql-plugin/src/main/scala/com/nvidia/spark/rapids/FloatUtils.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/main/scala/com/nvidia/spark/rapids/FloatUtils.scala -------------------------------------------------------------------------------- /sql-plugin/src/main/scala/com/nvidia/spark/rapids/GatherUtils.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/main/scala/com/nvidia/spark/rapids/GatherUtils.scala -------------------------------------------------------------------------------- /sql-plugin/src/main/scala/com/nvidia/spark/rapids/GpuBatchUtils.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/main/scala/com/nvidia/spark/rapids/GpuBatchUtils.scala -------------------------------------------------------------------------------- /sql-plugin/src/main/scala/com/nvidia/spark/rapids/GpuCSVScan.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/main/scala/com/nvidia/spark/rapids/GpuCSVScan.scala -------------------------------------------------------------------------------- /sql-plugin/src/main/scala/com/nvidia/spark/rapids/GpuCanonicalize.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/main/scala/com/nvidia/spark/rapids/GpuCanonicalize.scala -------------------------------------------------------------------------------- /sql-plugin/src/main/scala/com/nvidia/spark/rapids/GpuCast.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/main/scala/com/nvidia/spark/rapids/GpuCast.scala -------------------------------------------------------------------------------- /sql-plugin/src/main/scala/com/nvidia/spark/rapids/GpuDataProducer.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/main/scala/com/nvidia/spark/rapids/GpuDataProducer.scala -------------------------------------------------------------------------------- /sql-plugin/src/main/scala/com/nvidia/spark/rapids/GpuDataTypes.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/main/scala/com/nvidia/spark/rapids/GpuDataTypes.scala -------------------------------------------------------------------------------- /sql-plugin/src/main/scala/com/nvidia/spark/rapids/GpuEvalMode.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/main/scala/com/nvidia/spark/rapids/GpuEvalMode.scala -------------------------------------------------------------------------------- /sql-plugin/src/main/scala/com/nvidia/spark/rapids/GpuExec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/main/scala/com/nvidia/spark/rapids/GpuExec.scala -------------------------------------------------------------------------------- /sql-plugin/src/main/scala/com/nvidia/spark/rapids/GpuExpandExec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/main/scala/com/nvidia/spark/rapids/GpuExpandExec.scala -------------------------------------------------------------------------------- /sql-plugin/src/main/scala/com/nvidia/spark/rapids/GpuExpressions.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/main/scala/com/nvidia/spark/rapids/GpuExpressions.scala -------------------------------------------------------------------------------- /sql-plugin/src/main/scala/com/nvidia/spark/rapids/GpuGenerateExec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/main/scala/com/nvidia/spark/rapids/GpuGenerateExec.scala -------------------------------------------------------------------------------- /sql-plugin/src/main/scala/com/nvidia/spark/rapids/GpuInSet.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/main/scala/com/nvidia/spark/rapids/GpuInSet.scala -------------------------------------------------------------------------------- /sql-plugin/src/main/scala/com/nvidia/spark/rapids/GpuJoinUtils.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/main/scala/com/nvidia/spark/rapids/GpuJoinUtils.scala -------------------------------------------------------------------------------- /sql-plugin/src/main/scala/com/nvidia/spark/rapids/GpuJsonTuple.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/main/scala/com/nvidia/spark/rapids/GpuJsonTuple.scala -------------------------------------------------------------------------------- /sql-plugin/src/main/scala/com/nvidia/spark/rapids/GpuListUtils.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/main/scala/com/nvidia/spark/rapids/GpuListUtils.scala -------------------------------------------------------------------------------- /sql-plugin/src/main/scala/com/nvidia/spark/rapids/GpuMapUtils.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/main/scala/com/nvidia/spark/rapids/GpuMapUtils.scala -------------------------------------------------------------------------------- /sql-plugin/src/main/scala/com/nvidia/spark/rapids/GpuMetrics.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/main/scala/com/nvidia/spark/rapids/GpuMetrics.scala -------------------------------------------------------------------------------- /sql-plugin/src/main/scala/com/nvidia/spark/rapids/GpuOrcScan.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/main/scala/com/nvidia/spark/rapids/GpuOrcScan.scala -------------------------------------------------------------------------------- /sql-plugin/src/main/scala/com/nvidia/spark/rapids/GpuOverrides.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/main/scala/com/nvidia/spark/rapids/GpuOverrides.scala -------------------------------------------------------------------------------- /sql-plugin/src/main/scala/com/nvidia/spark/rapids/GpuPartitioning.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/main/scala/com/nvidia/spark/rapids/GpuPartitioning.scala -------------------------------------------------------------------------------- /sql-plugin/src/main/scala/com/nvidia/spark/rapids/GpuScan.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/main/scala/com/nvidia/spark/rapids/GpuScan.scala -------------------------------------------------------------------------------- /sql-plugin/src/main/scala/com/nvidia/spark/rapids/GpuSemaphore.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/main/scala/com/nvidia/spark/rapids/GpuSemaphore.scala -------------------------------------------------------------------------------- /sql-plugin/src/main/scala/com/nvidia/spark/rapids/GpuSortExec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/main/scala/com/nvidia/spark/rapids/GpuSortExec.scala -------------------------------------------------------------------------------- /sql-plugin/src/main/scala/com/nvidia/spark/rapids/GpuWrite.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/main/scala/com/nvidia/spark/rapids/GpuWrite.scala -------------------------------------------------------------------------------- /sql-plugin/src/main/scala/com/nvidia/spark/rapids/HashExprMetas.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/main/scala/com/nvidia/spark/rapids/HashExprMetas.scala -------------------------------------------------------------------------------- /sql-plugin/src/main/scala/com/nvidia/spark/rapids/HiveProvider.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/main/scala/com/nvidia/spark/rapids/HiveProvider.scala -------------------------------------------------------------------------------- /sql-plugin/src/main/scala/com/nvidia/spark/rapids/HostAlloc.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/main/scala/com/nvidia/spark/rapids/HostAlloc.scala -------------------------------------------------------------------------------- /sql-plugin/src/main/scala/com/nvidia/spark/rapids/JoinGatherer.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/main/scala/com/nvidia/spark/rapids/JoinGatherer.scala -------------------------------------------------------------------------------- /sql-plugin/src/main/scala/com/nvidia/spark/rapids/MapUtil.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/main/scala/com/nvidia/spark/rapids/MapUtil.scala -------------------------------------------------------------------------------- /sql-plugin/src/main/scala/com/nvidia/spark/rapids/MemoryChecker.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/main/scala/com/nvidia/spark/rapids/MemoryChecker.scala -------------------------------------------------------------------------------- /sql-plugin/src/main/scala/com/nvidia/spark/rapids/MetaUtils.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/main/scala/com/nvidia/spark/rapids/MetaUtils.scala -------------------------------------------------------------------------------- /sql-plugin/src/main/scala/com/nvidia/spark/rapids/NvtxWithMetrics.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/main/scala/com/nvidia/spark/rapids/NvtxWithMetrics.scala -------------------------------------------------------------------------------- /sql-plugin/src/main/scala/com/nvidia/spark/rapids/PlanShims.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/main/scala/com/nvidia/spark/rapids/PlanShims.scala -------------------------------------------------------------------------------- /sql-plugin/src/main/scala/com/nvidia/spark/rapids/Plugin.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/main/scala/com/nvidia/spark/rapids/Plugin.scala -------------------------------------------------------------------------------- /sql-plugin/src/main/scala/com/nvidia/spark/rapids/RapidsConf.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/main/scala/com/nvidia/spark/rapids/RapidsConf.scala -------------------------------------------------------------------------------- /sql-plugin/src/main/scala/com/nvidia/spark/rapids/RapidsMeta.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/main/scala/com/nvidia/spark/rapids/RapidsMeta.scala -------------------------------------------------------------------------------- /sql-plugin/src/main/scala/com/nvidia/spark/rapids/RegexParser.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/main/scala/com/nvidia/spark/rapids/RegexParser.scala -------------------------------------------------------------------------------- /sql-plugin/src/main/scala/com/nvidia/spark/rapids/SamplingUtils.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/main/scala/com/nvidia/spark/rapids/SamplingUtils.scala -------------------------------------------------------------------------------- /sql-plugin/src/main/scala/com/nvidia/spark/rapids/SchemaUtils.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/main/scala/com/nvidia/spark/rapids/SchemaUtils.scala -------------------------------------------------------------------------------- /sql-plugin/src/main/scala/com/nvidia/spark/rapids/ShimLoaderTemp.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/main/scala/com/nvidia/spark/rapids/ShimLoaderTemp.scala -------------------------------------------------------------------------------- /sql-plugin/src/main/scala/com/nvidia/spark/rapids/SortUtils.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/main/scala/com/nvidia/spark/rapids/SortUtils.scala -------------------------------------------------------------------------------- /sql-plugin/src/main/scala/com/nvidia/spark/rapids/SparkShims.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/main/scala/com/nvidia/spark/rapids/SparkShims.scala -------------------------------------------------------------------------------- /sql-plugin/src/main/scala/com/nvidia/spark/rapids/SpillPriorities.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/main/scala/com/nvidia/spark/rapids/SpillPriorities.scala -------------------------------------------------------------------------------- /sql-plugin/src/main/scala/com/nvidia/spark/rapids/StrategyRules.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/main/scala/com/nvidia/spark/rapids/StrategyRules.scala -------------------------------------------------------------------------------- /sql-plugin/src/main/scala/com/nvidia/spark/rapids/TypeChecks.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/main/scala/com/nvidia/spark/rapids/TypeChecks.scala -------------------------------------------------------------------------------- /sql-plugin/src/main/scala/com/nvidia/spark/rapids/VersionUtils.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/main/scala/com/nvidia/spark/rapids/VersionUtils.scala -------------------------------------------------------------------------------- /sql-plugin/src/main/scala/com/nvidia/spark/rapids/asyncProfiler.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/main/scala/com/nvidia/spark/rapids/asyncProfiler.scala -------------------------------------------------------------------------------- /sql-plugin/src/main/scala/com/nvidia/spark/rapids/dataSourceUtil.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/main/scala/com/nvidia/spark/rapids/dataSourceUtil.scala -------------------------------------------------------------------------------- /sql-plugin/src/main/scala/com/nvidia/spark/rapids/limit.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/main/scala/com/nvidia/spark/rapids/limit.scala -------------------------------------------------------------------------------- /sql-plugin/src/main/scala/com/nvidia/spark/rapids/literals.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/main/scala/com/nvidia/spark/rapids/literals.scala -------------------------------------------------------------------------------- /sql-plugin/src/main/scala/com/nvidia/spark/rapids/lore/GpuLore.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/main/scala/com/nvidia/spark/rapids/lore/GpuLore.scala -------------------------------------------------------------------------------- /sql-plugin/src/main/scala/com/nvidia/spark/rapids/lore/dump.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/main/scala/com/nvidia/spark/rapids/lore/dump.scala -------------------------------------------------------------------------------- /sql-plugin/src/main/scala/com/nvidia/spark/rapids/lore/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/main/scala/com/nvidia/spark/rapids/lore/package.scala -------------------------------------------------------------------------------- /sql-plugin/src/main/scala/com/nvidia/spark/rapids/lore/replay.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/main/scala/com/nvidia/spark/rapids/lore/replay.scala -------------------------------------------------------------------------------- /sql-plugin/src/main/scala/com/nvidia/spark/rapids/misc.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/main/scala/com/nvidia/spark/rapids/misc.scala -------------------------------------------------------------------------------- /sql-plugin/src/main/scala/com/nvidia/spark/rapids/nullExpressions.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/main/scala/com/nvidia/spark/rapids/nullExpressions.scala -------------------------------------------------------------------------------- /sql-plugin/src/main/scala/com/nvidia/spark/rapids/profiler.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/main/scala/com/nvidia/spark/rapids/profiler.scala -------------------------------------------------------------------------------- /sql-plugin/src/main/scala/org/apache/spark/sql/rapids/GpuAvroScan.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/main/scala/org/apache/spark/sql/rapids/GpuAvroScan.scala -------------------------------------------------------------------------------- /sql-plugin/src/main/scala/org/apache/spark/sql/rapids/GpuParseUrl.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/main/scala/org/apache/spark/sql/rapids/GpuParseUrl.scala -------------------------------------------------------------------------------- /sql-plugin/src/main/scala/org/apache/spark/sql/rapids/GpuScalaUDF.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/main/scala/org/apache/spark/sql/rapids/GpuScalaUDF.scala -------------------------------------------------------------------------------- /sql-plugin/src/main/scala/org/apache/spark/sql/rapids/bitwise.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/main/scala/org/apache/spark/sql/rapids/bitwise.scala -------------------------------------------------------------------------------- /sql-plugin/src/test/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/test/resources/log4j.properties -------------------------------------------------------------------------------- /sql-plugin/src/test/resources/log4j2.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/test/resources/log4j2.properties -------------------------------------------------------------------------------- /sql-plugin/src/test/scala/com/nvidia/spark/rapids/ArmSuite.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/test/scala/com/nvidia/spark/rapids/ArmSuite.scala -------------------------------------------------------------------------------- /sql-plugin/src/test/scala/com/nvidia/spark/rapids/FQSuiteName.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/sql-plugin/src/test/scala/com/nvidia/spark/rapids/FQSuiteName.scala -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tests/pom.xml -------------------------------------------------------------------------------- /tests/src/test/java/com/nvidia/spark/rapids/TestStats.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tests/src/test/java/com/nvidia/spark/rapids/TestStats.java -------------------------------------------------------------------------------- /tests/src/test/resources/dates.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tests/src/test/resources/dates.csv -------------------------------------------------------------------------------- /tests/src/test/resources/day-time-interval-to-be-fix.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tests/src/test/resources/day-time-interval-to-be-fix.csv -------------------------------------------------------------------------------- /tests/src/test/resources/day-time-interval.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tests/src/test/resources/day-time-interval.csv -------------------------------------------------------------------------------- /tests/src/test/resources/decimal-test-legacy.parquet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tests/src/test/resources/decimal-test-legacy.parquet -------------------------------------------------------------------------------- /tests/src/test/resources/decimal-test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tests/src/test/resources/decimal-test.csv -------------------------------------------------------------------------------- /tests/src/test/resources/decimal-test.orc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tests/src/test/resources/decimal-test.orc -------------------------------------------------------------------------------- /tests/src/test/resources/decimal-test.parquet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tests/src/test/resources/decimal-test.parquet -------------------------------------------------------------------------------- /tests/src/test/resources/disorder-read-schema.parquet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tests/src/test/resources/disorder-read-schema.parquet -------------------------------------------------------------------------------- /tests/src/test/resources/file-splits.orc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tests/src/test/resources/file-splits.orc -------------------------------------------------------------------------------- /tests/src/test/resources/file-splits.parquet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tests/src/test/resources/file-splits.parquet -------------------------------------------------------------------------------- /tests/src/test/resources/floats.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tests/src/test/resources/floats.csv -------------------------------------------------------------------------------- /tests/src/test/resources/hybrid-Julian-calendar.orc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tests/src/test/resources/hybrid-Julian-calendar.orc -------------------------------------------------------------------------------- /tests/src/test/resources/ints.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tests/src/test/resources/ints.csv -------------------------------------------------------------------------------- /tests/src/test/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tests/src/test/resources/log4j.properties -------------------------------------------------------------------------------- /tests/src/test/resources/log4j2.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tests/src/test/resources/log4j2.properties -------------------------------------------------------------------------------- /tests/src/test/resources/lots_o_longs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tests/src/test/resources/lots_o_longs.csv -------------------------------------------------------------------------------- /tests/src/test/resources/map_of_strings.snappy.parquet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tests/src/test/resources/map_of_strings.snappy.parquet -------------------------------------------------------------------------------- /tests/src/test/resources/mixed-types.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tests/src/test/resources/mixed-types.csv -------------------------------------------------------------------------------- /tests/src/test/resources/nested-unsigned-malformed.parquet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tests/src/test/resources/nested-unsigned-malformed.parquet -------------------------------------------------------------------------------- /tests/src/test/resources/nested-unsigned.parquet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tests/src/test/resources/nested-unsigned.parquet -------------------------------------------------------------------------------- /tests/src/test/resources/nullable_floats.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tests/src/test/resources/nullable_floats.csv -------------------------------------------------------------------------------- /tests/src/test/resources/partitioned-csv/partKey=100/part-00000-e2c10641-1db9-47a3-be72-a1a5e94f63c6.c000.csv: -------------------------------------------------------------------------------- 1 | 11,12,13,14,15 2 | 16,17,18,19,20 3 | -------------------------------------------------------------------------------- /tests/src/test/resources/partitioned-csv/partKey=102/part-00000-e2c10641-1db9-47a3-be72-a1a5e94f63c6.c000.csv: -------------------------------------------------------------------------------- 1 | 1,2,3,4,5 2 | 6,7,8,9,10 3 | -------------------------------------------------------------------------------- /tests/src/test/resources/schema-can-prune.orc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tests/src/test/resources/schema-can-prune.orc -------------------------------------------------------------------------------- /tests/src/test/resources/schema-cant-prune.orc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tests/src/test/resources/schema-cant-prune.orc -------------------------------------------------------------------------------- /tests/src/test/resources/shorts.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tests/src/test/resources/shorts.csv -------------------------------------------------------------------------------- /tests/src/test/resources/strings.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tests/src/test/resources/strings.csv -------------------------------------------------------------------------------- /tests/src/test/resources/test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tests/src/test/resources/test.csv -------------------------------------------------------------------------------- /tests/src/test/resources/test_unsigned64.parquet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tests/src/test/resources/test_unsigned64.parquet -------------------------------------------------------------------------------- /tests/src/test/resources/test_withheaders.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tests/src/test/resources/test_withheaders.csv -------------------------------------------------------------------------------- /tests/src/test/resources/timestamp-date-test-msec.parquet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tests/src/test/resources/timestamp-date-test-msec.parquet -------------------------------------------------------------------------------- /tests/src/test/resources/timestamp-date-test.parquet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tests/src/test/resources/timestamp-date-test.parquet -------------------------------------------------------------------------------- /tests/src/test/resources/timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tests/src/test/resources/timestamps.csv -------------------------------------------------------------------------------- /tests/src/test/resources/very_large_longs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tests/src/test/resources/very_large_longs.csv -------------------------------------------------------------------------------- /tests/src/test/resources/window-function-test-nonull.orc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tests/src/test/resources/window-function-test-nonull.orc -------------------------------------------------------------------------------- /tests/src/test/resources/window-function-test.orc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tests/src/test/resources/window-function-test.orc -------------------------------------------------------------------------------- /tests/src/test/scala/com/nvidia/spark/rapids/AnsiCastOpSuite.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tests/src/test/scala/com/nvidia/spark/rapids/AnsiCastOpSuite.scala -------------------------------------------------------------------------------- /tests/src/test/scala/com/nvidia/spark/rapids/AstUtilSuite.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tests/src/test/scala/com/nvidia/spark/rapids/AstUtilSuite.scala -------------------------------------------------------------------------------- /tests/src/test/scala/com/nvidia/spark/rapids/CastOpSuite.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tests/src/test/scala/com/nvidia/spark/rapids/CastOpSuite.scala -------------------------------------------------------------------------------- /tests/src/test/scala/com/nvidia/spark/rapids/CollectionOpSuite.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tests/src/test/scala/com/nvidia/spark/rapids/CollectionOpSuite.scala -------------------------------------------------------------------------------- /tests/src/test/scala/com/nvidia/spark/rapids/ConditionalsSuite.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tests/src/test/scala/com/nvidia/spark/rapids/ConditionalsSuite.scala -------------------------------------------------------------------------------- /tests/src/test/scala/com/nvidia/spark/rapids/CsvScanRetrySuite.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tests/src/test/scala/com/nvidia/spark/rapids/CsvScanRetrySuite.scala -------------------------------------------------------------------------------- /tests/src/test/scala/com/nvidia/spark/rapids/CsvScanSuite.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tests/src/test/scala/com/nvidia/spark/rapids/CsvScanSuite.scala -------------------------------------------------------------------------------- /tests/src/test/scala/com/nvidia/spark/rapids/CudfTestHelper.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tests/src/test/scala/com/nvidia/spark/rapids/CudfTestHelper.scala -------------------------------------------------------------------------------- /tests/src/test/scala/com/nvidia/spark/rapids/DistributionSuite.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tests/src/test/scala/com/nvidia/spark/rapids/DistributionSuite.scala -------------------------------------------------------------------------------- /tests/src/test/scala/com/nvidia/spark/rapids/DumpUtilsSuite.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tests/src/test/scala/com/nvidia/spark/rapids/DumpUtilsSuite.scala -------------------------------------------------------------------------------- /tests/src/test/scala/com/nvidia/spark/rapids/ExpandExecSuite.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tests/src/test/scala/com/nvidia/spark/rapids/ExpandExecSuite.scala -------------------------------------------------------------------------------- /tests/src/test/scala/com/nvidia/spark/rapids/FilterExprSuite.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tests/src/test/scala/com/nvidia/spark/rapids/FilterExprSuite.scala -------------------------------------------------------------------------------- /tests/src/test/scala/com/nvidia/spark/rapids/FuzzerUtils.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tests/src/test/scala/com/nvidia/spark/rapids/FuzzerUtils.scala -------------------------------------------------------------------------------- /tests/src/test/scala/com/nvidia/spark/rapids/GpuBatchUtilsSuite.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tests/src/test/scala/com/nvidia/spark/rapids/GpuBatchUtilsSuite.scala -------------------------------------------------------------------------------- /tests/src/test/scala/com/nvidia/spark/rapids/GpuGenerateSuite.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tests/src/test/scala/com/nvidia/spark/rapids/GpuGenerateSuite.scala -------------------------------------------------------------------------------- /tests/src/test/scala/com/nvidia/spark/rapids/GpuSemaphoreSuite.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tests/src/test/scala/com/nvidia/spark/rapids/GpuSemaphoreSuite.scala -------------------------------------------------------------------------------- /tests/src/test/scala/com/nvidia/spark/rapids/GpuSortRetrySuite.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tests/src/test/scala/com/nvidia/spark/rapids/GpuSortRetrySuite.scala -------------------------------------------------------------------------------- /tests/src/test/scala/com/nvidia/spark/rapids/GpuUnitTests.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tests/src/test/scala/com/nvidia/spark/rapids/GpuUnitTests.scala -------------------------------------------------------------------------------- /tests/src/test/scala/com/nvidia/spark/rapids/HiveHashTestSuite.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tests/src/test/scala/com/nvidia/spark/rapids/HiveHashTestSuite.scala -------------------------------------------------------------------------------- /tests/src/test/scala/com/nvidia/spark/rapids/ImplicitsTestSuite.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tests/src/test/scala/com/nvidia/spark/rapids/ImplicitsTestSuite.scala -------------------------------------------------------------------------------- /tests/src/test/scala/com/nvidia/spark/rapids/JoinsSuite.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tests/src/test/scala/com/nvidia/spark/rapids/JoinsSuite.scala -------------------------------------------------------------------------------- /tests/src/test/scala/com/nvidia/spark/rapids/JsonScanRetrySuite.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tests/src/test/scala/com/nvidia/spark/rapids/JsonScanRetrySuite.scala -------------------------------------------------------------------------------- /tests/src/test/scala/com/nvidia/spark/rapids/KnownNotNullSuite.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tests/src/test/scala/com/nvidia/spark/rapids/KnownNotNullSuite.scala -------------------------------------------------------------------------------- /tests/src/test/scala/com/nvidia/spark/rapids/LimitExecSuite.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tests/src/test/scala/com/nvidia/spark/rapids/LimitExecSuite.scala -------------------------------------------------------------------------------- /tests/src/test/scala/com/nvidia/spark/rapids/LimitRetrySuite.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tests/src/test/scala/com/nvidia/spark/rapids/LimitRetrySuite.scala -------------------------------------------------------------------------------- /tests/src/test/scala/com/nvidia/spark/rapids/MetaUtilsSuite.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tests/src/test/scala/com/nvidia/spark/rapids/MetaUtilsSuite.scala -------------------------------------------------------------------------------- /tests/src/test/scala/com/nvidia/spark/rapids/OrcQuerySuite.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tests/src/test/scala/com/nvidia/spark/rapids/OrcQuerySuite.scala -------------------------------------------------------------------------------- /tests/src/test/scala/com/nvidia/spark/rapids/OrcScanSuite.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tests/src/test/scala/com/nvidia/spark/rapids/OrcScanSuite.scala -------------------------------------------------------------------------------- /tests/src/test/scala/com/nvidia/spark/rapids/OrcSuite.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tests/src/test/scala/com/nvidia/spark/rapids/OrcSuite.scala -------------------------------------------------------------------------------- /tests/src/test/scala/com/nvidia/spark/rapids/ParquetQuerySuite.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tests/src/test/scala/com/nvidia/spark/rapids/ParquetQuerySuite.scala -------------------------------------------------------------------------------- /tests/src/test/scala/com/nvidia/spark/rapids/ParquetScanSuite.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tests/src/test/scala/com/nvidia/spark/rapids/ParquetScanSuite.scala -------------------------------------------------------------------------------- /tests/src/test/scala/com/nvidia/spark/rapids/ParquetWriterSuite.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tests/src/test/scala/com/nvidia/spark/rapids/ParquetWriterSuite.scala -------------------------------------------------------------------------------- /tests/src/test/scala/com/nvidia/spark/rapids/ParseDateTimeSuite.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tests/src/test/scala/com/nvidia/spark/rapids/ParseDateTimeSuite.scala -------------------------------------------------------------------------------- /tests/src/test/scala/com/nvidia/spark/rapids/RangeRetrySuite.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tests/src/test/scala/com/nvidia/spark/rapids/RangeRetrySuite.scala -------------------------------------------------------------------------------- /tests/src/test/scala/com/nvidia/spark/rapids/RebaseHelperSuite.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tests/src/test/scala/com/nvidia/spark/rapids/RebaseHelperSuite.scala -------------------------------------------------------------------------------- /tests/src/test/scala/com/nvidia/spark/rapids/RowBasedUDFSuite.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tests/src/test/scala/com/nvidia/spark/rapids/RowBasedUDFSuite.scala -------------------------------------------------------------------------------- /tests/src/test/scala/com/nvidia/spark/rapids/ScalaUDFSuite.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tests/src/test/scala/com/nvidia/spark/rapids/ScalaUDFSuite.scala -------------------------------------------------------------------------------- /tests/src/test/scala/com/nvidia/spark/rapids/SerializationSuite.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tests/src/test/scala/com/nvidia/spark/rapids/SerializationSuite.scala -------------------------------------------------------------------------------- /tests/src/test/scala/com/nvidia/spark/rapids/SlowFileSystem.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tests/src/test/scala/com/nvidia/spark/rapids/SlowFileSystem.scala -------------------------------------------------------------------------------- /tests/src/test/scala/com/nvidia/spark/rapids/SortExecSuite.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tests/src/test/scala/com/nvidia/spark/rapids/SortExecSuite.scala -------------------------------------------------------------------------------- /tests/src/test/scala/com/nvidia/spark/rapids/TestUtils.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tests/src/test/scala/com/nvidia/spark/rapids/TestUtils.scala -------------------------------------------------------------------------------- /tests/src/test/scala/com/nvidia/spark/rapids/TimeOperatorsSuite.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tests/src/test/scala/com/nvidia/spark/rapids/TimeOperatorsSuite.scala -------------------------------------------------------------------------------- /tests/src/test/scala/com/nvidia/spark/rapids/WindowRetrySuite.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tests/src/test/scala/com/nvidia/spark/rapids/WindowRetrySuite.scala -------------------------------------------------------------------------------- /tests/src/test/scala/com/nvidia/spark/rapids/WithRetrySuite.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tests/src/test/scala/com/nvidia/spark/rapids/WithRetrySuite.scala -------------------------------------------------------------------------------- /tests/src/test/scala/com/nvidia/spark/rapids/lore/GpuLoreSuite.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tests/src/test/scala/com/nvidia/spark/rapids/lore/GpuLoreSuite.scala -------------------------------------------------------------------------------- /tests/src/test/scala/org/apache/spark/sql/FileUtils.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tests/src/test/scala/org/apache/spark/sql/FileUtils.scala -------------------------------------------------------------------------------- /tests/src/test/scala/org/apache/spark/sql/GpuSparkPlanSuite.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tests/src/test/scala/org/apache/spark/sql/GpuSparkPlanSuite.scala -------------------------------------------------------------------------------- /tests/src/test/scala/org/apache/spark/sql/rapids/OrcFilterSuite.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tests/src/test/scala/org/apache/spark/sql/rapids/OrcFilterSuite.scala -------------------------------------------------------------------------------- /tests/src/test/scala/org/apache/spark/sql/rapids/TestingUDT.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tests/src/test/scala/org/apache/spark/sql/rapids/TestingUDT.scala -------------------------------------------------------------------------------- /tools/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/.gitignore -------------------------------------------------------------------------------- /tools/generated_files/320/operatorsScore.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/320/operatorsScore.csv -------------------------------------------------------------------------------- /tools/generated_files/320/supportedDataSource.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/320/supportedDataSource.csv -------------------------------------------------------------------------------- /tools/generated_files/320/supportedExecs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/320/supportedExecs.csv -------------------------------------------------------------------------------- /tools/generated_files/320/supportedExprs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/320/supportedExprs.csv -------------------------------------------------------------------------------- /tools/generated_files/321/operatorsScore.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/321/operatorsScore.csv -------------------------------------------------------------------------------- /tools/generated_files/321/supportedDataSource.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/321/supportedDataSource.csv -------------------------------------------------------------------------------- /tools/generated_files/321/supportedExecs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/321/supportedExecs.csv -------------------------------------------------------------------------------- /tools/generated_files/321/supportedExprs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/321/supportedExprs.csv -------------------------------------------------------------------------------- /tools/generated_files/321cdh/operatorsScore.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/321cdh/operatorsScore.csv -------------------------------------------------------------------------------- /tools/generated_files/321cdh/supportedDataSource.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/321cdh/supportedDataSource.csv -------------------------------------------------------------------------------- /tools/generated_files/321cdh/supportedExecs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/321cdh/supportedExecs.csv -------------------------------------------------------------------------------- /tools/generated_files/321cdh/supportedExprs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/321cdh/supportedExprs.csv -------------------------------------------------------------------------------- /tools/generated_files/322/operatorsScore.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/322/operatorsScore.csv -------------------------------------------------------------------------------- /tools/generated_files/322/supportedDataSource.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/322/supportedDataSource.csv -------------------------------------------------------------------------------- /tools/generated_files/322/supportedExecs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/322/supportedExecs.csv -------------------------------------------------------------------------------- /tools/generated_files/322/supportedExprs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/322/supportedExprs.csv -------------------------------------------------------------------------------- /tools/generated_files/323/operatorsScore.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/323/operatorsScore.csv -------------------------------------------------------------------------------- /tools/generated_files/323/supportedDataSource.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/323/supportedDataSource.csv -------------------------------------------------------------------------------- /tools/generated_files/323/supportedExecs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/323/supportedExecs.csv -------------------------------------------------------------------------------- /tools/generated_files/323/supportedExprs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/323/supportedExprs.csv -------------------------------------------------------------------------------- /tools/generated_files/324/operatorsScore.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/324/operatorsScore.csv -------------------------------------------------------------------------------- /tools/generated_files/324/supportedDataSource.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/324/supportedDataSource.csv -------------------------------------------------------------------------------- /tools/generated_files/324/supportedExecs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/324/supportedExecs.csv -------------------------------------------------------------------------------- /tools/generated_files/324/supportedExprs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/324/supportedExprs.csv -------------------------------------------------------------------------------- /tools/generated_files/330/operatorsScore.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/330/operatorsScore.csv -------------------------------------------------------------------------------- /tools/generated_files/330/supportedDataSource.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/330/supportedDataSource.csv -------------------------------------------------------------------------------- /tools/generated_files/330/supportedExecs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/330/supportedExecs.csv -------------------------------------------------------------------------------- /tools/generated_files/330/supportedExprs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/330/supportedExprs.csv -------------------------------------------------------------------------------- /tools/generated_files/330cdh/operatorsScore.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/330cdh/operatorsScore.csv -------------------------------------------------------------------------------- /tools/generated_files/330cdh/supportedDataSource.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/330cdh/supportedDataSource.csv -------------------------------------------------------------------------------- /tools/generated_files/330cdh/supportedExecs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/330cdh/supportedExecs.csv -------------------------------------------------------------------------------- /tools/generated_files/330cdh/supportedExprs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/330cdh/supportedExprs.csv -------------------------------------------------------------------------------- /tools/generated_files/331/operatorsScore.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/331/operatorsScore.csv -------------------------------------------------------------------------------- /tools/generated_files/331/supportedDataSource.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/331/supportedDataSource.csv -------------------------------------------------------------------------------- /tools/generated_files/331/supportedExecs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/331/supportedExecs.csv -------------------------------------------------------------------------------- /tools/generated_files/331/supportedExprs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/331/supportedExprs.csv -------------------------------------------------------------------------------- /tools/generated_files/332/operatorsScore.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/332/operatorsScore.csv -------------------------------------------------------------------------------- /tools/generated_files/332/supportedDataSource.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/332/supportedDataSource.csv -------------------------------------------------------------------------------- /tools/generated_files/332/supportedExecs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/332/supportedExecs.csv -------------------------------------------------------------------------------- /tools/generated_files/332/supportedExprs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/332/supportedExprs.csv -------------------------------------------------------------------------------- /tools/generated_files/332cdh/operatorsScore.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/332cdh/operatorsScore.csv -------------------------------------------------------------------------------- /tools/generated_files/332cdh/supportedDataSource.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/332cdh/supportedDataSource.csv -------------------------------------------------------------------------------- /tools/generated_files/332cdh/supportedExecs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/332cdh/supportedExecs.csv -------------------------------------------------------------------------------- /tools/generated_files/332cdh/supportedExprs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/332cdh/supportedExprs.csv -------------------------------------------------------------------------------- /tools/generated_files/333/operatorsScore.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/333/operatorsScore.csv -------------------------------------------------------------------------------- /tools/generated_files/333/supportedDataSource.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/333/supportedDataSource.csv -------------------------------------------------------------------------------- /tools/generated_files/333/supportedExecs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/333/supportedExecs.csv -------------------------------------------------------------------------------- /tools/generated_files/333/supportedExprs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/333/supportedExprs.csv -------------------------------------------------------------------------------- /tools/generated_files/334/operatorsScore.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/334/operatorsScore.csv -------------------------------------------------------------------------------- /tools/generated_files/334/supportedDataSource.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/334/supportedDataSource.csv -------------------------------------------------------------------------------- /tools/generated_files/334/supportedExecs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/334/supportedExecs.csv -------------------------------------------------------------------------------- /tools/generated_files/334/supportedExprs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/334/supportedExprs.csv -------------------------------------------------------------------------------- /tools/generated_files/340/operatorsScore.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/340/operatorsScore.csv -------------------------------------------------------------------------------- /tools/generated_files/340/supportedDataSource.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/340/supportedDataSource.csv -------------------------------------------------------------------------------- /tools/generated_files/340/supportedExecs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/340/supportedExecs.csv -------------------------------------------------------------------------------- /tools/generated_files/340/supportedExprs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/340/supportedExprs.csv -------------------------------------------------------------------------------- /tools/generated_files/341/operatorsScore.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/341/operatorsScore.csv -------------------------------------------------------------------------------- /tools/generated_files/341/supportedDataSource.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/341/supportedDataSource.csv -------------------------------------------------------------------------------- /tools/generated_files/341/supportedExecs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/341/supportedExecs.csv -------------------------------------------------------------------------------- /tools/generated_files/341/supportedExprs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/341/supportedExprs.csv -------------------------------------------------------------------------------- /tools/generated_files/342/operatorsScore.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/342/operatorsScore.csv -------------------------------------------------------------------------------- /tools/generated_files/342/supportedDataSource.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/342/supportedDataSource.csv -------------------------------------------------------------------------------- /tools/generated_files/342/supportedExecs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/342/supportedExecs.csv -------------------------------------------------------------------------------- /tools/generated_files/342/supportedExprs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/342/supportedExprs.csv -------------------------------------------------------------------------------- /tools/generated_files/343/operatorsScore.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/343/operatorsScore.csv -------------------------------------------------------------------------------- /tools/generated_files/343/supportedDataSource.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/343/supportedDataSource.csv -------------------------------------------------------------------------------- /tools/generated_files/343/supportedExecs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/343/supportedExecs.csv -------------------------------------------------------------------------------- /tools/generated_files/343/supportedExprs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/343/supportedExprs.csv -------------------------------------------------------------------------------- /tools/generated_files/344/operatorsScore.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/344/operatorsScore.csv -------------------------------------------------------------------------------- /tools/generated_files/344/supportedDataSource.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/344/supportedDataSource.csv -------------------------------------------------------------------------------- /tools/generated_files/344/supportedExecs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/344/supportedExecs.csv -------------------------------------------------------------------------------- /tools/generated_files/344/supportedExprs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/344/supportedExprs.csv -------------------------------------------------------------------------------- /tools/generated_files/350/operatorsScore.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/350/operatorsScore.csv -------------------------------------------------------------------------------- /tools/generated_files/350/supportedDataSource.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/350/supportedDataSource.csv -------------------------------------------------------------------------------- /tools/generated_files/350/supportedExecs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/350/supportedExecs.csv -------------------------------------------------------------------------------- /tools/generated_files/350/supportedExprs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/350/supportedExprs.csv -------------------------------------------------------------------------------- /tools/generated_files/350db143/supportedDataSource.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/generated_files/351/operatorsScore.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/351/operatorsScore.csv -------------------------------------------------------------------------------- /tools/generated_files/351/supportedDataSource.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/351/supportedDataSource.csv -------------------------------------------------------------------------------- /tools/generated_files/351/supportedExecs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/351/supportedExecs.csv -------------------------------------------------------------------------------- /tools/generated_files/351/supportedExprs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/351/supportedExprs.csv -------------------------------------------------------------------------------- /tools/generated_files/352/operatorsScore.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/352/operatorsScore.csv -------------------------------------------------------------------------------- /tools/generated_files/352/supportedDataSource.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/352/supportedDataSource.csv -------------------------------------------------------------------------------- /tools/generated_files/352/supportedExecs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/352/supportedExecs.csv -------------------------------------------------------------------------------- /tools/generated_files/352/supportedExprs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/352/supportedExprs.csv -------------------------------------------------------------------------------- /tools/generated_files/353/operatorsScore.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/353/operatorsScore.csv -------------------------------------------------------------------------------- /tools/generated_files/353/supportedDataSource.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/353/supportedDataSource.csv -------------------------------------------------------------------------------- /tools/generated_files/353/supportedExecs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/353/supportedExecs.csv -------------------------------------------------------------------------------- /tools/generated_files/353/supportedExprs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/353/supportedExprs.csv -------------------------------------------------------------------------------- /tools/generated_files/354/operatorsScore.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/354/operatorsScore.csv -------------------------------------------------------------------------------- /tools/generated_files/354/supportedDataSource.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/354/supportedDataSource.csv -------------------------------------------------------------------------------- /tools/generated_files/354/supportedExecs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/354/supportedExecs.csv -------------------------------------------------------------------------------- /tools/generated_files/354/supportedExprs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/354/supportedExprs.csv -------------------------------------------------------------------------------- /tools/generated_files/355/operatorsScore.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/355/operatorsScore.csv -------------------------------------------------------------------------------- /tools/generated_files/355/supportedDataSource.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/355/supportedDataSource.csv -------------------------------------------------------------------------------- /tools/generated_files/355/supportedExecs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/355/supportedExecs.csv -------------------------------------------------------------------------------- /tools/generated_files/355/supportedExprs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/355/supportedExprs.csv -------------------------------------------------------------------------------- /tools/generated_files/356/operatorsScore.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/356/operatorsScore.csv -------------------------------------------------------------------------------- /tools/generated_files/356/supportedDataSource.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/356/supportedDataSource.csv -------------------------------------------------------------------------------- /tools/generated_files/356/supportedExecs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/356/supportedExecs.csv -------------------------------------------------------------------------------- /tools/generated_files/356/supportedExprs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/356/supportedExprs.csv -------------------------------------------------------------------------------- /tools/generated_files/400/operatorsScore.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/400/operatorsScore.csv -------------------------------------------------------------------------------- /tools/generated_files/400/supportedDataSource.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/400/supportedDataSource.csv -------------------------------------------------------------------------------- /tools/generated_files/400/supportedExecs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/400/supportedExecs.csv -------------------------------------------------------------------------------- /tools/generated_files/400/supportedExprs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/400/supportedExprs.csv -------------------------------------------------------------------------------- /tools/generated_files/401/operatorsScore.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/401/operatorsScore.csv -------------------------------------------------------------------------------- /tools/generated_files/401/supportedDataSource.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/401/supportedDataSource.csv -------------------------------------------------------------------------------- /tools/generated_files/401/supportedExecs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/401/supportedExecs.csv -------------------------------------------------------------------------------- /tools/generated_files/401/supportedExprs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/401/supportedExprs.csv -------------------------------------------------------------------------------- /tools/generated_files/operatorsScore.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/operatorsScore.csv -------------------------------------------------------------------------------- /tools/generated_files/supportedDataSource.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/supportedDataSource.csv -------------------------------------------------------------------------------- /tools/generated_files/supportedExecs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/supportedExecs.csv -------------------------------------------------------------------------------- /tools/generated_files/supportedExprs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/generated_files/supportedExprs.csv -------------------------------------------------------------------------------- /tools/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/tools/pom.xml -------------------------------------------------------------------------------- /udf-compiler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/udf-compiler/README.md -------------------------------------------------------------------------------- /udf-compiler/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/udf-compiler/pom.xml -------------------------------------------------------------------------------- /udf-compiler/src/main/scala/com/nvidia/spark/udf/CFG.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/udf-compiler/src/main/scala/com/nvidia/spark/udf/CFG.scala -------------------------------------------------------------------------------- /udf-compiler/src/main/scala/com/nvidia/spark/udf/GpuScalaUDF.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/udf-compiler/src/main/scala/com/nvidia/spark/udf/GpuScalaUDF.scala -------------------------------------------------------------------------------- /udf-compiler/src/main/scala/com/nvidia/spark/udf/State.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/udf-compiler/src/main/scala/com/nvidia/spark/udf/State.scala -------------------------------------------------------------------------------- /udf-compiler/src/test/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/udf-compiler/src/test/resources/log4j.properties -------------------------------------------------------------------------------- /udf-compiler/src/test/resources/log4j2.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/udf-compiler/src/test/resources/log4j2.properties -------------------------------------------------------------------------------- /udf-compiler/src/test/scala/com/nvidia/spark/OpcodeSuite.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/spark-rapids/HEAD/udf-compiler/src/test/scala/com/nvidia/spark/OpcodeSuite.scala --------------------------------------------------------------------------------